-
Notifications
You must be signed in to change notification settings - Fork 14
100 lines (99 loc) · 2.79 KB
/
check-code.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
name: Build and test
on: [pull_request]
jobs:
cancel-previous:
name: Cancel Previous Runs
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
install:
name: Install dependencies and build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.13.0]
steps:
- uses: actions/checkout@v2
- name: Setup app dependencies
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install Dependencies
run: npm ci
- uses: actions/cache@v2
id: restore-build
with:
path: ./*
key: ${{ github.sha }}
test:
name: Run unit tests
runs-on: ubuntu-latest
needs: [install]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ needs.install.outputs.matrix.node-version }}
- uses: actions/cache@v2
id: restore-build
with:
path: ./*
key: ${{ github.sha }}
- name: Run unit tests
run: npm run test:headless
build:
name: Build app
runs-on: ubuntu-latest
needs: [install]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ needs.install.outputs.matrix.node-version }}
- uses: actions/cache@v2
id: restore-build
with:
path: ./*
key: ${{ github.sha }}
- name: Build project
run: npm run build
lint:
name: Run eslint and prettier
runs-on: ubuntu-latest
needs: [install]
steps:
- uses: actions/checkout@v2
- name: Setup app dependencies
uses: actions/setup-node@v1
with:
node-version: ${{ needs.install.outputs.matrix.node-version }}
- uses: actions/cache@v2
id: restore-build
with:
path: ./*
key: ${{ github.sha }}
- name: Run ESLint
run: npm run lint
- name: Annotate Code Linting Results
uses: ataylorme/[email protected]
if: always()
with:
repo-token: '${{ secrets.GITHUB_TOKEN }}'
report-json: 'eslint_report.json'
- name: Run Prettier
run: npx prettier --check .