File tree Expand file tree Collapse file tree 6 files changed +9217
-2
lines changed Expand file tree Collapse file tree 6 files changed +9217
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Test
2
+
3
+ on :
4
+ pull_request :
5
+
6
+ workflow_dispatch :
7
+ push :
8
+ branches :
9
+ - main
10
+
11
+ permissions :
12
+ contents : read # we just need to checkout the repo
13
+
14
+ jobs :
15
+ test :
16
+ name : Test
17
+
18
+ timeout-minutes : 45
19
+
20
+ strategy :
21
+ matrix :
22
+ os : [ubuntu-latest]
23
+ node : [20.x, 24.x]
24
+ fail-fast : false
25
+
26
+ runs-on : ${{ matrix.os }}
27
+
28
+ steps :
29
+ - name : Setup Node.js
30
+ uses : actions/setup-node@v4
31
+ with :
32
+ node-version : ${{ matrix.node }}
33
+
34
+ - name : Checkout
35
+ uses : actions/checkout@v5
36
+
37
+ - name : Install Dependencies
38
+ run : |
39
+ npm ci
40
+ npx lerna bootstrap
41
+ shell : bash
42
+
43
+ - name : Run Tests
44
+ run : npm run test -- --stream
45
+ shell : bash
Original file line number Diff line number Diff line change 14
14
- uses : actions/checkout@v1
15
15
- uses : actions/setup-node@v2
16
16
- name : Install Dependencies
17
- run : npm install
17
+ run : npm ci
18
18
- name : Set up Git
19
19
run : |
20
20
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
You can’t perform that action at this time.
0 commit comments