Skip to content

Commit

Permalink
Revert node 16 version pinning in CI
Browse files Browse the repository at this point in the history
Unpin node 16 from 16.8 in the github test workflow because a fix for
nodejs/node#40030 has been released.
  • Loading branch information
renawolford6 committed Sep 10, 2021
1 parent 5822331 commit 8c33c7c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Expand Up @@ -14,19 +14,19 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: ["12", "13", "14", "15", "16.8"]
node-version: ["12", "13", "14", "15", "16"]
os: [ubuntu-latest]
edgedb-version: ["stable"]

include:
- os: ubuntu-latest
node-version: "16.8"
node-version: "16"
edgedb-version: "nightly"
- os: macos-latest
node-version: "16.8"
node-version: "16"
edgedb-version: "stable"
- os: windows-latest
node-version: "16.8"
node-version: "16"
edgedb-version: "stable"

steps:
Expand Down

0 comments on commit 8c33c7c

Please sign in to comment.