We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24bd6c0 commit 8c34474Copy full SHA for 8c34474
1 file changed
.github/workflows/push.yml
@@ -1,21 +1,30 @@
1
2
-name: Push
+name: Test
3
4
-on: [ push ]
+on:
5
+ push:
6
+ pull_request:
7
+
8
+concurrency:
9
+ group: ${{ github.head_ref || github.run_id }}
10
+ cancel-in-progress: true
11
12
jobs:
13
14
build:
15
- runs-on: ubuntu-latest
16
+ runs-on: ${{ matrix.operating-system }}
17
18
strategy:
19
fail-fast: false
20
matrix:
21
+ operating-system:
22
+ - ubuntu-latest
23
+ - windows-latest
24
node-version:
- - 20.x # Maintenance
- - 22.x # Active
- - 23.x # Current
25
+ - 20.x
26
+ - 22.x
27
+ - 24.x
28
29
steps:
30
@@ -32,3 +41,6 @@ jobs:
32
41
33
42
- name: Yarn install
34
43
run: yarn install
44
45
+ - name: Test
46
+ run: yarn test
0 commit comments