Skip to content

Commit

Permalink
Adapt workflow to use Node 14 sub-version to work with branch protection
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Sep 6, 2022
1 parent 8477f8f commit 8193ea5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Expand Up @@ -58,7 +58,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['10', '12', '14']
node: ['10', '12', '14.18.0']
name: Node ${{ matrix.node }} (Linux)
steps:
- name: Checkout Commit
Expand All @@ -78,7 +78,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
node: ['14', '18']
node: ['14.18.0', '18']
name: Node ${{ matrix.node }} (macOS)
steps:
- name: Checkout Commit
Expand All @@ -98,7 +98,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
node: ['10', '14', '18']
node: ['10', '14.18.0', '18']
name: Node ${{ matrix.node }} (Windows)
steps:
- name: Checkout Commit
Expand Down

0 comments on commit 8193ea5

Please sign in to comment.