-
Notifications
You must be signed in to change notification settings - Fork 7
38 lines (36 loc) · 945 Bytes
/
unit-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
name: 'Tests: Unit'
on:
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, synchronize]
jobs:
unit-tests:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/cache@v3
with:
path: ~/.pnpm-store
key:
# prettier-ignore
${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-
- uses: actions/checkout@v3
- uses: pnpm/[email protected]
with:
version: 6.0.2
- uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm run build
env:
PUBLIC_FATHOM_ID: ${{ secrets.PUBLIC_FATHOM_ID }}
PUBLIC_FATHOM_URL: ${{ secrets.PUBLIC_FATHOM_URL }}
- name: Test
run: pnpm run test:ci