chore: bump @types/chrome from 0.0.273 to 0.0.280 in /frontend/extens… #776
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 Test | |
on: | |
push: | |
branches: | |
- main | |
- "release/v*.*.*" | |
pull_request: | |
branches: [main] | |
paths: | |
- "frontend/web/**" | |
jobs: | |
eslint-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4.0.0 | |
with: | |
version: 9 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "18" | |
cache: pnpm | |
cache-dependency-path: "frontend/web/pnpm-lock.yaml" | |
- run: pnpm install | |
working-directory: frontend/web | |
- name: Run eslint check | |
run: pnpm lint | |
working-directory: frontend/web | |
- name: Run type check | |
run: pnpm type-check | |
working-directory: frontend/web | |
frontend-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4.0.0 | |
with: | |
version: 9 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "18" | |
cache: pnpm | |
cache-dependency-path: "frontend/web/pnpm-lock.yaml" | |
- run: pnpm install | |
working-directory: frontend/web | |
- name: Run frontend build | |
run: pnpm build | |
working-directory: frontend/web |