Skip to content
This repository has been archived by the owner on May 27, 2022. It is now read-only.

Commit

Permalink
chore(deps): Remove node 10.x from engines. Add node 16.x
Browse files Browse the repository at this point in the history
  • Loading branch information
javierbrea committed May 20, 2021
1 parent f7b0d77 commit 21d4c29
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["10.23.0", "12.19.0", "14.15.0", "15.2.0"]
node: ["12.22.1", "14.17.0", "15.14.0", "16.1.0"]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Download test results
uses: actions/download-artifact@v2
with:
name: coverage-15.2.0
name: coverage-16.1.0
path: coverage
- name: Coveralls
uses: coverallsapp/github-action@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '14.x'
registry-url: 'https://npm.pkg.github.com'
# Defaults to the user or organization that owns the workflow file
scope: '@data-provider'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '14.x'
registry-url: 'https://registry.npmjs.org/'
- run: npm ci
- run: npm run build
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [3.0.2] - 2021-05-20

### Added
- chore(deps): Add Node v16.x to engines

### Changed
- chore(deps): Update devDependencies
- chore(deps): Update dependencies
- style: Remove Sonar smells

### Removed
- chore(deps): Remove Node v10.x from engines

## [3.0.1] - 2021-01-14

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,6 @@
"test/**/*.js": "eslint"
},
"engines": {
"node": "10.x || 12.x || 14.x || 15.x"
"node": "12.x || 14.x || 15.x || 16.x"
}
}

0 comments on commit 21d4c29

Please sign in to comment.