File tree Expand file tree Collapse file tree 3 files changed +40
-40
lines changed
Expand file tree Collapse file tree 3 files changed +40
-40
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,12 @@ jobs:
1212 release :
1313 runs-on : ubuntu-latest
1414 steps :
15- - uses : actions/checkout@v4
15+ - uses : actions/checkout@v5
1616 with :
1717 fetch-depth : 0
1818
1919 - name : Set node
20- uses : actions/setup-node@v4
20+ uses : actions/setup-node@v6
2121 with :
2222 node-version : lts/*
2323
Original file line number Diff line number Diff line change 1+ name : Testing
2+
3+ on :
4+ push :
5+ branches : [main, devel]
6+ pull_request :
7+ branches : [main, devel]
8+
9+ jobs :
10+ test :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - name : Checkout
14+ uses : actions/checkout@v5
15+
16+ - name : Install pnpm
17+ uses : pnpm/action-setup@v4
18+
19+ - name : Set node LTS
20+ uses : actions/setup-node@v6
21+ with :
22+ node-version : lts/*
23+ cache : pnpm
24+
25+ - name : Install
26+ run : pnpm install
27+
28+ # - name: Build
29+ # run: pnpm run build
30+
31+ # - name: Lint
32+ # run: pnpm run lint
33+
34+ # - name: Typecheck
35+ # run: pnpm run typecheck
36+
37+ - name : Test
38+ run : pnpm run test
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments