-
Notifications
You must be signed in to change notification settings - Fork 2
50 lines (39 loc) · 1.1 KB
/
check.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
49
50
name: Check the code
on: push
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: pnpm
- name: Set up pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: true
- name: Get/set Prettier and ESLint cache
uses: actions/cache@v3
with:
path: |
node_modules/.cache/prettier
.eslintcache
key: ${{ runner.os }}-prettier-eslint-${{ github.sha }}
restore-keys: |
${{ runner.os }}-prettier-eslint-
- name: Try to build the library
run: pnpm run build
- name: Lint code for static errors
run: pnpm run lint
- name: Check code formatting
run: pnpm run check-formatting
- name: Type-check the code
run: pnpm run typecheck
- name: Run unit tests
run: pnpm run test
- name: Run integration tests
run: pnpm run test-integration