-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (47 loc) · 1.09 KB
/
lint-build-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
38
39
40
41
42
43
44
45
46
47
48
name: lint, build, and test
on: push
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: checkout
uses: actions/checkout@v2
- name: setup node
uses: actions/setup-node@v2
with:
node-version: 16
- name: setup dependencies
run: npm i -g eslint prettier && npm i
- name: lint
run: npm run lint:ts
- name: check formatting
run: npm run prettier
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: checkout
uses: actions/checkout@v2
- name: setup node
uses: actions/setup-node@v2
with:
node-version: 16
- name: setup dependencies
run: npm i
- name: build
run: npm run build
test:
runs-on: ubuntu-latest
timeout-minutes: 2
steps:
- name: checkout
uses: actions/checkout@v2
- name: setup node
uses: actions/setup-node@v2
with:
node-version: 16
- name: setup dependencies
run: npm i
- name: run tests
run: npm run test