Skip to content

Commit

Permalink
fix: Support node 20 in engines field in package.json (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
aklinker1 authored Feb 9, 2024
1 parent 42041ef commit fe167fe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
version: 8
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: pnpm
- run: pnpm install

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
version: 8
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: pnpm
- run: pnpm install
- run: pnpm format:check
Expand All @@ -32,7 +32,7 @@ jobs:
version: 8
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: pnpm
- run: pnpm install
- run: ./scripts/dev.sh all
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
"description": "Easily publish web extensions to their stores",
"version": "2.1.1",
"engines": {
"node": "18",
"pnpm": "8"
"node": "^18.0.0 || >=20.0.0"
},
"license": "MIT",
"keywords": [
Expand Down

0 comments on commit fe167fe

Please sign in to comment.