-
Notifications
You must be signed in to change notification settings - Fork 10
93 lines (78 loc) · 2.64 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
name: Test
concurrency:
group: "test-${{ github.ref }}"
cancel-in-progress: true
on:
push:
branches: [master]
paths:
- "packages/react-zorm/**"
- ".github/workflows/test.yml"
- "pnpm-lock.yaml"
pull_request:
paths:
- "packages/react-zorm/**"
- ".github/workflows/test.yml"
- "pnpm-lock.yaml"
jobs:
test:
timeout-minutes: 20
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "16.x"
- uses: pnpm/[email protected]
with:
version: "7.x"
- name: Set pnpm store path
run: echo "PNPM_STORE_PATH=$(pnpm store path)" >> $GITHUB_ENV
- name: Cache pnpm modules
uses: actions/cache@v3
with:
path: ${{ env.PNPM_STORE_PATH }}
key: pnpm-test-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
pnpm-test-${{ runner.os }}-
- name: Cache playwright browsers
uses: actions/cache@v2
with:
path: ~/.cache/ms-playwright
key: playwright-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
playwright-${{ runner.os }}-
- name: Install dependencies
run: pnpm install --frozen-lockfile --filter react-zorm
- name: Build
run: |
set -eu
cd packages/react-zorm
pnpm run build
- name: Check types
run: |
set -eu
cd packages/react-zorm
pnpm run tsc
- name: Check run tests
run: |
set -eu
cd packages/react-zorm
pnpm run jest
- name: Check lints
run: |
set -eu
cd packages/react-zorm
pnpm run eslint
- name: Install Playwright Browsers
run: cd packages/react-zorm && ./node_modules/.bin/playwright install --with-deps
- name: Run Playwright tests
run: |
set -eu
cd packages/react-zorm
pnpm run playwright-test
- name: Run size-limit
run: |
set -eu
cd packages/react-zorm
pnpm run size-limit