Skip to content

Commit

Permalink
maint/CICD ~ update CICD platforms to use Node-v10+ builders
Browse files Browse the repository at this point in the history
- Rollup (used for the ESM and subsequent Deno builds) requires Node-v10+
  • Loading branch information
rivy committed Jan 15, 2021
1 parent acb7dd4 commit 57d7bba
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ branches:

environment:
matrix:
- nodejs_version: '14'
- nodejs_version: '12'
- nodejs_version: '10'
- nodejs_version: '8'
- nodejs_version: '6'
# - nodejs_version: '8'
# - nodejs_version: '6'
# - nodejs_version: "4"

# platform:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
node-version: [6.x, 8.x, 10.x, 12.x]
node-version: [10.x, 12.x, 14.x]

steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
language: node_js
node_js:
- '14'
- '12'
- '10'
- '8'
- '6'
after_success:
- npm run coverage

0 comments on commit 57d7bba

Please sign in to comment.