Skip to content

Commit 4eeb1dd

Browse files
committed
ci: fix Action workflow
1 parent 0de23d5 commit 4eeb1dd

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/test-workflow.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,20 @@ jobs:
88
matrix:
99
os: [ubuntu-latest, macos-latest, windows-latest]
1010
fpm-version: ['v0.1.0','v0.1.1','latest']
11+
node-version: ['20.x']
1112

1213
steps:
1314
- name: Checkout
1415
uses: actions/checkout@v4
1516

17+
- name: Use Node.js ${{ matrix.node-version }}
18+
uses: actions/setup-node@v4
19+
with:
20+
node-version: ${{ matrix.node-version }}
21+
22+
- name: Install dependencies
23+
run: npm ci
24+
1625
- name: fpm-setup
1726
uses: ./ # Uses action in the root directory
1827
with:

0 commit comments

Comments
 (0)