Skip to content

Commit

Permalink
Fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
piterofc committed Mar 9, 2024
1 parent 53d9aae commit 267d299
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,18 @@ jobs:
- name: Check out the repository
uses: actions/checkout@v2

- name: Setup Node.js
- name: Setup Node.js 16.x (macos)
if: startsWith(matrix.os, 'macos')
uses: actions/setup-node@v1
with:
node-version: '16.x'

- name: Setup Node.js 14.x (ubuntu)
if: startsWith(matrix.os, 'ubuntu')
uses: actions/setup-node@v1
with:
node-version: '14.x'

- name: Install dependencies
run: npm install

Expand Down

0 comments on commit 267d299

Please sign in to comment.