File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 8
8
branches :
9
9
- main
10
10
11
+ concurrency :
12
+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
13
+ cancel-in-progress : true
14
+
11
15
env :
12
16
HUSKY : 0
13
17
24
28
- macos-latest
25
29
26
30
steps :
27
- - name : Checkout repository
28
- uses : actions/checkout@v3
31
+ - name : Fetch Sources
32
+ uses : actions/checkout@v4
29
33
30
34
- name : Enable Corepack
31
35
if : matrix.os == 'windows-latest'
36
40
run : corepack enable
37
41
38
42
- name : Setup Node.js 22.x
39
- uses : actions/setup-node@v4
43
+ uses : actions/setup-node@v5
40
44
with :
41
45
node-version : 22.x
42
46
cache : " yarn"
47
51
run : yarn install --immutable
48
52
49
53
- name : Build
50
- run : yarn build
54
+ run : yarn run build
51
55
52
56
- name : Run Tests
53
- run : yarn test
57
+ run : yarn run test
You can’t perform that action at this time.
0 commit comments