memos/.github/workflows/frontend-tests.yml

53 lines
1.2 KiB
YAML
Raw Normal View History

2022-12-25 10:39:45 +08:00
name: Frontend Test
2022-08-24 21:12:08 +08:00
on:
pull_request:
2022-08-24 21:12:08 +08:00
branches:
- main
- "release/*.*.*"
2023-07-29 20:59:22 +08:00
paths:
- "web/**"
2022-08-24 21:12:08 +08:00
jobs:
eslint-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: bufbuild/buf-setup-action@v1
- run: buf generate
working-directory: proto
- uses: pnpm/action-setup@v2.2.4
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: "18"
cache: pnpm
cache-dependency-path: "web/pnpm-lock.yaml"
- run: pnpm install
working-directory: web
- name: Run eslint check
run: pnpm lint
working-directory: web
frontend-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: bufbuild/buf-setup-action@v1
- run: buf generate
working-directory: proto
- uses: pnpm/action-setup@v2.2.4
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: "18"
cache: pnpm
cache-dependency-path: "web/pnpm-lock.yaml"
- run: pnpm install
working-directory: web
- name: Run frontend build
run: pnpm build
working-directory: web