-
Notifications
You must be signed in to change notification settings - Fork 8
46 lines (35 loc) · 946 Bytes
/
frontend.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Frontend Workflow Check
on: [pull_request, push]
concurrency: preview-${{ github.ref }}
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
run: npm install -g pnpm
working-directory: ./frontend
- name: Install
run: pnpm install --frozen-lockfile
id: install
working-directory: ./frontend
- name: Run ESLint
run: pnpm run lint
working-directory: ./frontend
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install pnpm
run: npm install -g pnpm
working-directory: ./frontend
- name: Install
run: pnpm install --frozen-lockfile
working-directory: ./frontend
- name: Test
run: pnpm test
working-directory: ./frontend