Skip to content
This repository has been archived by the owner on Apr 19, 2023. It is now read-only.

Commit

Permalink
Move test versions to 12.x and 14.x (#271)
Browse files Browse the repository at this point in the history
* Upgrading all lambda to Node14.x

* Bumping tests to 12.x and 14.x due to end of support for 10.x
  • Loading branch information
wizage authored Jun 4, 2021
1 parent 8695a3a commit ffd86fb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/jest.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-version: [12.x]
node-version: [12.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
node-version: [12.x, 14.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "index.js",
"scripts": {
"postinstall": "node scripts/post-install.js",
"preversion": "git fetch upstream && git checkout upstream/master && npm run lint && npm run test",
"preversion": "git fetch upstream && git checkout upstream/master && npm run lint && npm run dev-test",
"version": "cross-env-shell git checkout -b release/$npm_package_version ",
"postversion": "git push upstream && git push --tags",
"test": "jest --detectOpenHandles --runInBand",
Expand Down

0 comments on commit ffd86fb

Please sign in to comment.