File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,13 +13,13 @@ permissions:
1313jobs :
1414 build :
1515 runs-on : ubuntu-latest
16- name : Node 22
16+ name : Node 24
1717 steps :
1818 - uses : actions/checkout@v4
1919 - name : Setup node
2020 uses : actions/setup-node@v4
2121 with :
22- node-version : 22
22+ node-version : 24
2323
2424 - name : Install pnpm
2525 run : npm install -g pnpm
Original file line number Diff line number Diff line change 1+ name : tests
2+
3+ on :
4+ workflow_dispatch :
5+ push :
6+ branches : [ main ]
7+ pull_request :
8+ branches : [ main ]
9+
10+ permissions :
11+ contents : read
12+
13+ jobs :
14+ build :
15+ runs-on : ubuntu-latest
16+ strategy :
17+ matrix :
18+ node : [ '24' ]
19+ name : Node ${{ matrix.node }}
20+ steps :
21+ - uses : actions/checkout@v4
22+ - name : Setup node
23+ uses : actions/setup-node@v4
24+ with :
25+ node-version : ${{ matrix.node }}
26+
27+ - name : Install pnpm
28+ run : npm install -g pnpm
29+
30+ - name : Start Services
31+ run : pnpm test:services:start
32+
33+ - name : Install Dependencies
34+ run : pnpm install
35+
36+ - name : Approve Builds
37+ run : pnpm approve-builds
38+
39+ - name : Build
40+ run : pnpm build
41+
42+ - name : Test Packages
43+ run : pnpm test
You can’t perform that action at this time.
0 commit comments