Commit bf994e0 1 parent e124b5f commit bf994e0 Copy full SHA for bf994e0
File tree 3 files changed +63
-1
lines changed
3 files changed +63
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Check Bun - Windows
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+
8
+ workflow_dispatch :
9
+
10
+ concurrency :
11
+ group : ${{ github.workflow }}-${{ github.ref }}
12
+ cancel-in-progress : true
13
+
14
+ jobs :
15
+ build :
16
+ timeout-minutes : 5
17
+ runs-on : ubuntu-latest
18
+ steps :
19
+ - name : Checkout code
20
+ uses : actions/checkout@v4
21
+
22
+ - uses : oven-sh/setup-bun@v2
23
+ with :
24
+ bun-version : latest
25
+
26
+ - name : Install dependencies
27
+ run : bun install
28
+
29
+ - name : Tests
30
+ run : bun run ref --test-suite alloy
Original file line number Diff line number Diff line change
1
+ name : Check Node - Windows
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+
8
+ workflow_dispatch :
9
+
10
+ concurrency :
11
+ group : ${{ github.workflow }}-${{ github.ref }}
12
+ cancel-in-progress : true
13
+
14
+ jobs :
15
+ build :
16
+ timeout-minutes : 5
17
+ runs-on : ubuntu-latest
18
+ steps :
19
+ - name : Checkout code
20
+ uses : actions/checkout@v4
21
+
22
+ - name : Set up Node.js
23
+ uses : actions/setup-node@v4
24
+ with :
25
+ node-version : ' 22.x'
26
+ registry-url : ' https://registry.npmjs.org'
27
+
28
+ - name : Install dependencies
29
+ run : npm install
30
+
31
+ - name : Tests
32
+ run : npm run ref --test-suite alloy
Original file line number Diff line number Diff line change 24
24
- name : Set up Node.js
25
25
uses : actions/setup-node@v4
26
26
with :
27
- node-version : ' 20 .x'
27
+ node-version : ' 22 .x'
28
28
registry-url : ' https://registry.npmjs.org'
29
29
30
30
- name : Install dependencies
You can’t perform that action at this time.
0 commit comments