Skip to content

Commit

Permalink
Fix installing dependencies
Browse files Browse the repository at this point in the history
- Requires updating Node versions to test against, but Node 16 is no
  longer maintenance to begin with..
  • Loading branch information
carhartl committed Mar 9, 2024
1 parent 2628922 commit 2da96e3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 18.x
- name: Install dependencies
run: npm i
- name: Run BrowserStack E2E tests
Expand Down
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -46,7 +46,7 @@
"author": "Klaus Hartl",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-terser": "^0.4.4",
"browserstack-runner": "github:browserstack/browserstack-runner#1e85e559951bdf97ffe2a7c744ee67ca83589fde",
"eslint": "^8.43.0",
"eslint-config-prettier": "^9.0.0",
Expand All @@ -65,10 +65,10 @@
"release-it": "^17.0.0",
"rollup": "^4.1.4",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-license": "^3.0.0",
"rollup-plugin-license": "^3.2.0",
"simple-git-hooks": "^2.8.1"
},
"engines": {
"node": ">=16"
"node": ">=18"
}
}

0 comments on commit 2da96e3

Please sign in to comment.