-
Notifications
You must be signed in to change notification settings - Fork 222
52 lines (44 loc) · 1.19 KB
/
pr_ci_frontend.yaml
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
47
48
49
50
51
52
name: pr_ci_frontend
on:
pull_request:
branches:
- main
types: [opened, reopened, synchronize]
jobs:
frontend:
name: Run PR Frontend Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node environment
uses: actions/setup-node@v4
- name: Install Yarn
uses: borales/actions-yarn@v5
with:
cmd: install
dir: "frontend"
- name: Install Prettier
run: yarn add prettier
- name: Run Prettier - Formatting Check
working-directory: ./frontend
run: |
yarn prettier . --check --config ../.prettierrc --ignore-path ../.prettierignore
- name: Run Nuxt Type Check
if: always()
uses: borales/actions-yarn@v4
with:
cmd: nuxi typecheck
dir: "frontend"
- name: Run ESLint - Linting
if: always()
uses: borales/actions-yarn@v4
with:
cmd: eslint .
dir: "frontend"
- name: Run Vitest - Component Testing
if: always()
uses: borales/actions-yarn@v4
with:
cmd: vitest run --run
dir: "frontend"