-
Notifications
You must be signed in to change notification settings - Fork 35
39 lines (31 loc) · 935 Bytes
/
testing.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
name: Testing
on: push
jobs:
testing:
runs-on: ubuntu-latest
steps:
- name: Copy project to machine
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node: 18
- name: Restore node_modules
id: restore-node-modules
uses: actions/cache/restore@v3
with:
path: node_modules
key: cache-${{ hashFiles('yarn.lock') }}
- name: Install dependencies
if: steps.restore-node-modules.outputs.cache-hit != 'true'
run: yarn install
- name: Cache node_modules
if: steps.restore-node-modules.outputs.cache-hit != 'true'
uses: actions/cache/save@v3
with:
path: node_modules
key: ${{ steps.restore-node-modules.outputs.cache-primary-key }}
- name: Run lint
run: yarn lint
- name: Run testing
run: yarn test:unit