We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac14c63 commit ed93f8cCopy full SHA for ed93f8c
1 file changed
.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:
- runs-on: ubuntu-latest
18
+ runs-on: self-hosted-arc
19
20
strategy:
21
matrix:
22
node-version: [18.x, 20.x]
23
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
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