-
Notifications
You must be signed in to change notification settings - Fork 467
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ jobs: | |
# Otherwise we would not know if the problem is tied to the Node.js version | ||
fail-fast: false | ||
matrix: | ||
node: [18, 20] | ||
node: [14, 16, 18, 20] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: ⬇️ Checkout repo | ||
|
@@ -43,6 +43,10 @@ jobs: | |
with: | ||
node-version: ${{ matrix.node }} | ||
|
||
# Ideally done by actions/setup-node: https://github.com/actions/setup-node/issues/213 | ||
- name: Setup package manager | ||
run: npm install -g [email protected] | ||
|
||
- name: 📥 Download deps | ||
uses: bahmutov/npm-install@v1 | ||
with: | ||
|
@@ -80,6 +84,10 @@ jobs: | |
with: | ||
node-version: 18 | ||
|
||
# Ideally done by actions/setup-node: https://github.com/actions/setup-node/issues/213 | ||
- name: Setup package manager | ||
run: npm install -g [email protected] | ||
|
||
- name: 📥 Download deps | ||
uses: bahmutov/npm-install@v1 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters