Bump @types/node from 14.18.63 to 22.8.2 in /frontend #748
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Frontend Lint | |
on: | |
pull_request: | |
paths: | |
- "frontend/**/*" | |
- "frontend/*" | |
- ".github/workflows/frontend-lint.yml" | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./frontend | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
name: Install pnpm | |
with: | |
version: 9 | |
run_install: false | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
cache: 'pnpm' | |
cache-dependency-path: 'frontend/pnpm-lock.yaml' | |
- name: Setup Biome | |
uses: biomejs/setup-biome@v2 | |
with: | |
version: 1.9.4 | |
- name: Install dependencies | |
run: pnpm install | |
- name: Codegen | |
run: pnpm run codegen | |
- name: Run Biome | |
run: biome ci . |