-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (37 loc) · 1016 Bytes
/
CI.yaml
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: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
node-version: [18]
name: Build and run tests
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 9
run_install: false
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: ESLint
run: npm run lint -- --max-warnings 0
- name: Typecheck
run: npm run typecheck
- name: Check saved-views-client unit test coverage
run: npm run test:cover --prefix ./packages/saved-views-client
- name: Check saved-views-react unit test coverage
run: npm run test:cover --prefix ./packages/saved-views-react