Skip to content

Commit

Permalink
chore: bump deps and default node version
Browse files Browse the repository at this point in the history
BREAKING CHANGE: drop support for node 10 and 12
  • Loading branch information
ernscht committed Nov 28, 2022
1 parent 4c8237e commit d37dc7b
Show file tree
Hide file tree
Showing 4 changed files with 8,185 additions and 2,378 deletions.
25 changes: 5 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,29 +14,14 @@ jobs:
name: Test - ${{ matrix.platform }} - Node v${{ matrix.node-version }}
strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
node-version: [ 14.x, 16.x, 18.x ]
platform: [ ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2

- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Use latest NPM on ubuntu/macos
if: matrix.platform == 'ubuntu-latest' || matrix.platform == 'macos-latest'
run: sudo npm i -g npm

- name: Use latest NPM on windows
if: matrix.platform == 'windows-latest'
run: npm i -g npm

- name: Install dependencies
run: npm ci

- name: Run tests
run: npm test
env:
CI: true
- run: npm ci
- run: npm test
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
14.17.3
18.12.1
Loading

0 comments on commit d37dc7b

Please sign in to comment.