Skip to content

Commit

Permalink
Specify Node versions in install GH action test
Browse files Browse the repository at this point in the history
  • Loading branch information
sfirrin committed Aug 9, 2024
1 parent 77be807 commit cce9393
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/actions/install/action.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
name: Install dependencies

strategy:
matrix:
node-version: ['16.x', '18.x', '20.x']

runs:
using: composite
steps: # retry in case of server error from registry
- run: yarn install --ignore-engines || yarn install --ignore-engines
shell: bash
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

0 comments on commit cce9393

Please sign in to comment.