Skip to content

Commit

Permalink
feat: drop support for Node 8 and add Node 14 to the matrix
Browse files Browse the repository at this point in the history
Node 8 is no longer maintained and we want to limit the number of
supported environments as it adds maintanance cost.

BREAKING CHANGE: 🧨 Dropped support for the Node 8
  • Loading branch information
piotr-oles committed May 15, 2020
1 parent fb72903 commit 9023cd2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
needs: build
strategy:
matrix:
node: [8, 10, 12]
node: [10, 12, 14]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v1
Expand All @@ -61,7 +61,7 @@ jobs:
${{ runner.os }}-node-${{ matrix.node }}-yarn-
- name: Install dependencies
run: yarn install --frozen-lockfile --ignore-engines
run: yarn install --frozen-lockfile

- name: Download build artifact
uses: actions/download-artifact@v1
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
"webpack": "^4.42.1"
},
"engines": {
"node": ">=8",
"node": ">=10",
"yarn": ">=1.0.0"
}
}

0 comments on commit 9023cd2

Please sign in to comment.