-
Notifications
You must be signed in to change notification settings - Fork 17
50 lines (37 loc) · 1 KB
/
ci.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
name: CI
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup | Checkout
uses: actions/checkout@v2
- name: Setup | Install Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Setup | Yarn
uses: bahmutov/npm-install@v1
- name: Lint | Eslint Check
run: yarn lint
- name: Format | Prettier Check
run: yarn format --check
- name: Test | Verify types
run: yarn typecheck
- name: Test | Jest
run: yarn test --forceExit
build:
runs-on: ubuntu-latest
steps:
- name: Setup | Checkout
uses: actions/checkout@v2
- name: Setup | Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Setup | Yarn Install
uses: bahmutov/npm-install@v1
- name: Build | Build application
run: yarn build
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}