We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f01108f + 812e134 commit 0d4019bCopy full SHA for 0d4019b
.github/workflows/ci.yml
@@ -3,13 +3,13 @@ name: CI
3
on:
4
push:
5
branches:
6
+ - main
7
- master
- - 'v*' # older version branches
8
- tags:
9
- - '*'
10
- pull_request:
11
- schedule:
12
- - cron: '0 3 * * *' # daily at 3am
+ pull_request: {}
+
+concurrency:
+ group: ci-${{ github.head_ref || github.ref }}
+ cancel-in-progress: true
13
14
jobs:
15
test:
@@ -19,13 +19,13 @@ jobs:
19
20
strategy:
21
matrix:
22
- node-version: [10.x, 12.x, 13.x]
+ node-version: [18.x, 20.x, 22.x]
23
24
steps:
25
- - uses: actions/checkout@v1
+ - uses: actions/checkout@v4
26
27
- name: Use Node.js ${{ matrix.node-version }}
28
- uses: actions/setup-node@v1
+ uses: actions/setup-node@v4
29
with:
30
node-version: ${{ matrix.node-version }}
31
0 commit comments