-
-
Notifications
You must be signed in to change notification settings - Fork 24
33 lines (27 loc) · 657 Bytes
/
test.yml
File metadata and controls
33 lines (27 loc) · 657 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
name: Tests
on:
pull_request:
push:
branches:
- main
merge_group:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
submodules: true
- name: Install pnpm
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
- name: Setup Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: 24.14.0
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Run tests
run: pnpm test