Skip to content

Commit 92713be

Browse files
feat(ci): update the project (#13)
1 parent 1ee48ea commit 92713be

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/tests.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ on:
88
branches:
99
- main
1010

11+
concurrency:
12+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
13+
cancel-in-progress: true
14+
1115
env:
1216
HUSKY: 0
1317

@@ -24,8 +28,8 @@ jobs:
2428
- macos-latest
2529

2630
steps:
27-
- name: Checkout repository
28-
uses: actions/checkout@v3
31+
- name: Fetch Sources
32+
uses: actions/checkout@v4
2933

3034
- name: Enable Corepack
3135
if: matrix.os == 'windows-latest'
@@ -36,7 +40,7 @@ jobs:
3640
run: corepack enable
3741

3842
- name: Setup Node.js 22.x
39-
uses: actions/setup-node@v4
43+
uses: actions/setup-node@v5
4044
with:
4145
node-version: 22.x
4246
cache: "yarn"
@@ -47,7 +51,7 @@ jobs:
4751
run: yarn install --immutable
4852

4953
- name: Build
50-
run: yarn build
54+
run: yarn run build
5155

5256
- name: Run Tests
53-
run: yarn test
57+
run: yarn run test

0 commit comments

Comments
 (0)