Skip to content

Commit

Permalink
fix peerDependencies and test on Node 18
Browse files Browse the repository at this point in the history
  • Loading branch information
Swatinem committed May 8, 2022
1 parent e7b1526 commit 9653cd9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
build:
strategy:
matrix:
node: [12, 16]
node: [12, 18]
os: [ubuntu-latest, windows-latest]

name: Node ${{ matrix.node }} on ${{ matrix.os }}
Expand All @@ -23,7 +23,7 @@ jobs:
# frequently hangs for whatever reason,
# and we have no platform-specific code anyway…
- name: upload coverage
if: matrix.os == 'ubuntu-latest' && matrix.node == 16
if: matrix.os == 'ubuntu-latest' && matrix.node == 18
timeout-minutes: 1
continue-on-error: true
run: bash <(curl -s https://codecov.io/bash) -t ${{secrets.CODECOV_TOKEN}} -B ${{ github.ref }} -f coverage/coverage-final.json
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@
"typescript": "4.6.4"
},
"peerDependencies": {
"rollup": "^2.70",
"typescript": "^4.6"
"rollup": "^2.55",
"typescript": "^4.1"
},
"optionalDependencies": {
"@babel/code-frame": "^7.16.7"
Expand Down

0 comments on commit 9653cd9

Please sign in to comment.