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