-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (31 loc) · 831 Bytes
/
pr.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
name: PR Checks
on:
pull_request:
types: [opened, reopened, labeled, synchronize]
jobs:
build:
name: Core Unit Tests node-${{ matrix.node_version }}, ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
node_version: [20, 22]
include:
- os: macos-latest
node_version: 22
- os: windows-latest
node_version: 22
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set node version to ${{ matrix.node_version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
cache: yarn
- name: install
run: yarn install --immutable
- name: test
run: yarn test
- name: build
run: yarn build