Skip to content

Commit

Permalink
ci: fix Action workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gnikit committed Jan 15, 2024
1 parent 0de23d5 commit 4eeb1dd
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,20 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
fpm-version: ['v0.1.0','v0.1.1','latest']
node-version: ['20.x']

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm ci

- name: fpm-setup
uses: ./ # Uses action in the root directory
with:
Expand Down

0 comments on commit 4eeb1dd

Please sign in to comment.