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 5cbb34b commit 70c3a55Copy full SHA for 70c3a55
.github/workflows/ci.yml
@@ -13,7 +13,6 @@ jobs:
13
14
strategy:
15
matrix:
16
- node: [ 20, 22 ]
17
os:
18
- ubuntu-latest
19
- windows-latest
@@ -29,7 +28,7 @@ jobs:
29
28
- name: Set up Node.js
30
uses: actions/setup-node@v4
31
with:
32
- node-version: ${{ matrix.node }}
+ node-version: 22
33
cache: "npm"
34
35
- name: Init dependencies
.github/workflows/test_custom_action_itself.yml
@@ -9,7 +9,16 @@ on:
9
10
jobs:
11
test_custom_action_itself:
12
- runs-on: ubuntu-latest
+ name: Test Custom Action on ${{ matrix.os }}
+
+ strategy:
+ matrix:
+ os:
+ - ubuntu-latest
+ - macos-latest
20
+ runs-on: ${{ matrix.os }}
21
22
steps:
23
- uses: actions/checkout@v4
24
0 commit comments