2022-12-25 10:39:45 +08:00
|
|
|
name: Frontend Test
|
2022-08-24 21:12:08 +08:00
|
|
|
|
|
|
|
on:
|
2022-12-27 21:51:43 +08:00
|
|
|
pull_request:
|
2022-08-24 21:12:08 +08:00
|
|
|
branches:
|
|
|
|
- main
|
2023-01-01 22:01:16 +08:00
|
|
|
- "release/*.*.*"
|
2023-07-29 20:59:22 +08:00
|
|
|
paths:
|
|
|
|
- "web/**"
|
2022-08-24 21:12:08 +08:00
|
|
|
|
|
|
|
jobs:
|
2022-08-31 19:27:17 +08:00
|
|
|
eslint-checks:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-09-17 20:55:05 +08:00
|
|
|
- uses: bufbuild/buf-setup-action@v1
|
|
|
|
- run: buf generate
|
|
|
|
working-directory: proto
|
2023-04-16 00:47:40 +08:00
|
|
|
- uses: pnpm/action-setup@v2.2.4
|
|
|
|
with:
|
2023-06-15 22:35:41 +08:00
|
|
|
version: 8
|
2022-08-31 19:27:17 +08:00
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
2022-11-19 14:51:28 +08:00
|
|
|
node-version: "18"
|
2023-04-16 00:47:40 +08:00
|
|
|
cache: pnpm
|
|
|
|
cache-dependency-path: "web/pnpm-lock.yaml"
|
|
|
|
- run: pnpm install
|
2022-08-31 19:27:17 +08:00
|
|
|
working-directory: web
|
|
|
|
- name: Run eslint check
|
2023-04-16 00:47:40 +08:00
|
|
|
run: pnpm lint
|
2022-08-31 19:27:17 +08:00
|
|
|
working-directory: web
|
|
|
|
|
2022-08-31 20:21:56 +08:00
|
|
|
frontend-build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-09-17 20:55:05 +08:00
|
|
|
- uses: bufbuild/buf-setup-action@v1
|
|
|
|
- run: buf generate
|
|
|
|
working-directory: proto
|
2023-04-16 00:47:40 +08:00
|
|
|
- uses: pnpm/action-setup@v2.2.4
|
|
|
|
with:
|
2023-06-15 22:35:41 +08:00
|
|
|
version: 8
|
2022-08-31 20:21:56 +08:00
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
2022-11-19 14:51:28 +08:00
|
|
|
node-version: "18"
|
2023-04-16 00:47:40 +08:00
|
|
|
cache: pnpm
|
|
|
|
cache-dependency-path: "web/pnpm-lock.yaml"
|
|
|
|
- run: pnpm install
|
2022-08-31 20:21:56 +08:00
|
|
|
working-directory: web
|
|
|
|
- name: Run frontend build
|
2023-04-16 00:47:40 +08:00
|
|
|
run: pnpm build
|
2022-08-31 20:21:56 +08:00
|
|
|
working-directory: web
|