-
Notifications
You must be signed in to change notification settings - Fork 2
56 lines (53 loc) · 1.24 KB
/
test.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
51
52
53
54
55
56
name: test
on:
push:
branches:
- main
- prod-preview
pull_request:
branches:
- main
- prod-preview
types:
- opened
- synchronize
jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [18, 19, 20]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Set up .env
run: echo '${{ secrets.ENV_VARS }}' >> .env.local
- name: Install dependencies w/ setup
run: pnpm i
- name: Running code tests
run: npx jest --testPathPattern=code
lint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Node
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'pnpm'
- name: Set up .env
run: echo '${{ secrets.ENV_VARS }}' >> .env.local
- name: Install dependencies w/ setup
run: pnpm i
- name: lint
run: pnpm lint