Skip to content

Commit

Permalink
fix:
Browse files Browse the repository at this point in the history
- updated test.yml to use minimum node v16
  • Loading branch information
kelvink96 committed Sep 26, 2023
1 parent 8f9bd75 commit 5c2b3d4
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,18 @@ jobs:
- '16.x'
- '18.x' # whichever node versions you support
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test

- name: Clean install dependencies
run: npm ci

- name: Build application
run: npm run build --if-present

- name: Test
run: npm test

0 comments on commit 5c2b3d4

Please sign in to comment.