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 68060b5 commit f1e74bcCopy full SHA for f1e74bc
1 file changed
.github/workflows/node.yaml
@@ -2,6 +2,10 @@ name: Node CI
2
3
on:
4
push:
5
+ branches:
6
+ - '**'
7
+ tags:
8
+ - 'v[0-9]+.[0-9]+.[0-9]+*'
9
pull_request:
10
11
jobs:
@@ -10,17 +14,12 @@ jobs:
14
runs-on: ubuntu-latest
15
timeout-minutes: 15
12
16
13
- strategy:
- fail-fast: false
- matrix:
- node-version: [22.14.x]
17
-
18
steps:
19
- - uses: actions/checkout@v4
20
- - name: Use Node.js ${{ matrix.node-version }}
21
- uses: actions/setup-node@v4
+ - uses: actions/checkout@v6
+ - name: Use Node.js 22.x
+ uses: actions/setup-node@v6
22
with:
23
- node-version: ${{ matrix.node-version }}
+ node-version: 22.x
24
- name: Prepare Environment
25
run: |
26
yarn install
@@ -36,3 +35,4 @@ jobs:
36
35
yarn companion-module-build
37
env:
38
CI: true
+
0 commit comments