Skip to content

Commit

Permalink
chore(node12): remove node 12 from new workflows (#3344)
Browse files Browse the repository at this point in the history
in #3332, new reusable
workflows were created for stencil's ci system to enable
parallelism/speed. these workflows were written with stencil v2 in mind,
and as a result target node v12. we removed v12 support for stencil
(v3+) in #3302. however, upon
merging `main` into `v3.0.0-dev`, we realized that we need to remove the
values for node 12 from the new workflows
  • Loading branch information
rwaskiewicz authored Apr 25, 2022
1 parent 5f55e3d commit 2d78e68
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [ '12', '14', '16' ]
node: [ '14', '16' ]
os: [ 'ubuntu-latest', 'windows-latest' ]
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [ '12', '14', '16' ]
node: [ '14', '16' ]
os: [ 'ubuntu-latest', 'windows-latest' ]
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [ '12', '14', '16' ]
node: [ '14', '16' ]
os: [ 'ubuntu-latest', 'windows-latest' ]
runs-on: ${{ matrix.os }}
steps:
Expand Down

0 comments on commit 2d78e68

Please sign in to comment.