Skip to content

chore(deps): bump the eslint-prettier group across 1 directory with 2 updates #167

chore(deps): bump the eslint-prettier group across 1 directory with 2 updates

chore(deps): bump the eslint-prettier group across 1 directory with 2 updates #167

Workflow file for this run

name: Pull request checks - Web
on:
pull_request:
paths:
- 'web/**'
workflow_dispatch:
defaults:
run:
working-directory: web
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm i
- name: Lint
run: pnpm run lint
- name: Typecheck
run: pnpm run typecheck
- name: Build
run: pnpm run build