Skip to content

Commit f1e74bc

Browse files
committed
Fix: Updated workflow
1 parent 68060b5 commit f1e74bc

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/node.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: Node CI
22

33
on:
44
push:
5+
branches:
6+
- '**'
7+
tags:
8+
- 'v[0-9]+.[0-9]+.[0-9]+*'
59
pull_request:
610

711
jobs:
@@ -10,17 +14,12 @@ jobs:
1014
runs-on: ubuntu-latest
1115
timeout-minutes: 15
1216

13-
strategy:
14-
fail-fast: false
15-
matrix:
16-
node-version: [22.14.x]
17-
1817
steps:
19-
- uses: actions/checkout@v4
20-
- name: Use Node.js ${{ matrix.node-version }}
21-
uses: actions/setup-node@v4
18+
- uses: actions/checkout@v6
19+
- name: Use Node.js 22.x
20+
uses: actions/setup-node@v6
2221
with:
23-
node-version: ${{ matrix.node-version }}
22+
node-version: 22.x
2423
- name: Prepare Environment
2524
run: |
2625
yarn install
@@ -36,3 +35,4 @@ jobs:
3635
yarn companion-module-build
3736
env:
3837
CI: true
38+

0 commit comments

Comments
 (0)