-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (28 loc) · 923 Bytes
/
Copy pathpr.yml
File metadata and controls
38 lines (28 loc) · 923 Bytes
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: Unit Tests (PR)
on:
pull_request:
branches: ["canary", "master"]
permissions:
contents: read
jobs:
test:
strategy:
matrix:
version: [26]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: ${{ matrix.version }}
cache: "pnpm"
# The package scripts call just, so it is needed before install
- uses: extractions/setup-just@53165ef7e734c5c07cb06b3c8e7b647c5aa16db3 # v4.0.0
- run: pnpm install --frozen-lockfile
- run: just typecheck
- run: just lint-ci
- run: just fmt-check
- run: just test
- run: just typecheck-fixtures