Skip to content

Commit

Permalink
ci: replace Node.js 13 with 14, since 14 will be next LTS
Browse files Browse the repository at this point in the history
  • Loading branch information
iiroj committed Apr 26, 2020
1 parent 2c6f3ad commit b746290
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
@@ -1,6 +1,6 @@
environment:
matrix:
- nodejs_version: '13'
- nodejs_version: '14'
- nodejs_version: '12'
- nodejs_version: '10'

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Expand Up @@ -20,11 +20,11 @@ jobs:
test:
strategy:
matrix:
# Test with Node.js v10 (LTS), v12 (LTS), and v13 (latest)
# Test with Node.js v10 (LTS), v12 (LTS), and v14 (latest)
node:
- 10
- 12
- 13
- 14
# Test with Ubuntu and macOS
os:
- ubuntu-latest
Expand Down Expand Up @@ -58,9 +58,9 @@ jobs:
- run: yarn
# Run tests
- run: yarn test
# Upload coverage artifact from a single matrix entry
# Upload coverage artifact from Node.js LTS
- uses: actions/upload-artifact@v1
if: matrix.os == 'ubuntu-latest' && matrix.node == '13'
if: matrix.os == 'ubuntu-latest' && matrix.node == '12'
with:
name: coverage
path: coverage
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '13'
node-version: '12' # release using Node.js LTS
# Release using semantic-release.
# While this runs on all branches, it will only release latest from master
- uses: codfish/semantic-release-action@v1
Expand Down

0 comments on commit b746290

Please sign in to comment.