-
Notifications
You must be signed in to change notification settings - Fork 7
37 lines (30 loc) · 954 Bytes
/
test.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
name: Test
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm install
# This has to come before linting because we need to run the Gatsby build
# at least once in order to generate the GraphQL TypeScript definitions.
# The TypeScript type check lint check will otherwise fail.
- name: Check build
run: npm run build
- name: Run lint checks
run: npm run lint
- name: Run tests
run: npm run test
- name: Check build-storybook
run: npm run build-storybook