Skip to content

Commit

Permalink
Fix tests on Node 10
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Feb 16, 2021
1 parent 859354e commit af69512
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/workflow.yml
Expand Up @@ -29,6 +29,12 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
# TODO: remove after dropping support for Node <15.0.0, i.e. ensuring
# npm v7 is used. We need npm v7 due to peerDependencies automatic
# installation
- name: Install latest npm
run: npm install -g npm
if: "${{ matrix.node == 10.17.0 }}"
- name: Install dependencies
run: npm ci
- name: Linting
Expand Down

0 comments on commit af69512

Please sign in to comment.