We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da28df7 commit 6d24431Copy full SHA for 6d24431
1 file changed
.github/workflows/node.js.yml
@@ -6,18 +6,22 @@ on:
6
pull_request:
7
branches: [ master ]
8
9
+concurrency:
10
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
11
+ cancel-in-progress: true
12
+
13
jobs:
14
build:
- runs-on: ubuntu-latest
15
+ runs-on: self-hosted-arc
16
17
strategy:
18
matrix:
19
node-version: [16.x, 18.x, 20.x]
20
21
steps:
- - uses: actions/checkout@v2
22
+ - uses: actions/checkout@v4
23
- name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v2
24
+ uses: actions/setup-node@v4
25
with:
26
node-version: ${{ matrix.node-version }}
27
cache: 'npm'
0 commit comments