Skip to content

Commit

Permalink
Update CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nvie committed Apr 5, 2023
1 parent 5f7a7b1 commit 5c1dca3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 16.x]
node-version: [
12.x,
14.x,
# 16.x,
18.x,
# latest,
]

steps:
- uses: actions/checkout@v1
Expand All @@ -17,9 +23,16 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: |
npm ci
# - name: Install TypeScript ${{ matrix.ts-version }}
# run: |
# npm install -D typescript@${{ matrix.ts-version }}

- name: Run tests
run: |
npm install
npm run test
env:
CI: true
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v1.8.0

- Drop support for Node 10.x

## v1.7.1

- Add missing re-export of `islice` at the top level
Expand Down

0 comments on commit 5c1dca3

Please sign in to comment.