-
-
Notifications
You must be signed in to change notification settings - Fork 26
30 lines (26 loc) · 652 Bytes
/
ci.yml
File metadata and controls
30 lines (26 loc) · 652 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
name: "ci"
on:
push:
branches:
- "**"
pull_request:
branches:
- main
permissions: {}
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
persist-credentials: false
- name: Install pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6
- name: Set node version to 22
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: 22
cache: "pnpm"
- run: pnpm install
- name: Run tests
run: pnpm test