-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update Node.js to v20, pnpm to v8.7.5; update deps (#163)
- Loading branch information
1 parent
403907f
commit b393f63
Showing
6 changed files
with
632 additions
and
212 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,12 +20,10 @@ jobs: | |
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: pnpm/[email protected] | ||
with: | ||
version: 7 | ||
- uses: pnpm/action-setup@v2 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
node-version-file: ".nvmrc" | ||
cache: pnpm | ||
- run: pnpm i | ||
- run: pnpm lint | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
20 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,32 @@ | ||
{ | ||
"dependencies": { | ||
"@actions/core": "^1.10.0", | ||
"@actions/core": "^1.10.1", | ||
"finalhandler": "^1.2.0", | ||
"node-fetch": "^2.6.7", | ||
"puppeteer": "^19", | ||
"node-fetch": "^2.7.0", | ||
"puppeteer": "^21", | ||
"serve-static": "^1.15.0", | ||
"split2": "^4.1.0", | ||
"split2": "^4.2.0", | ||
"subresources": "^1.3.2" | ||
}, | ||
"engines": { | ||
"node": "^16" | ||
"node": "^20" | ||
}, | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"build": "tsc -p tsconfig.prod.json", | ||
"dev": "tsc -p tsconfig.json -w", | ||
"lint": "prettier . --check" | ||
}, | ||
"devDependencies": { | ||
"@types/finalhandler": "^1.2.0", | ||
"@types/node": "^18.11.13", | ||
"@types/node-fetch": "^2.6.2", | ||
"@types/serve-static": "^1.15.0", | ||
"@types/split2": "^3.2.1", | ||
"typescript": "^4.9.4" | ||
"@types/node": "^20.6.0", | ||
"@types/node-fetch": "^2.6.4", | ||
"@types/serve-static": "^1.15.2", | ||
"@types/split2": "^4.2.0", | ||
"typescript": "^5.2.2" | ||
}, | ||
"optionalDependencies": { | ||
"prettier": "^2.8.1", | ||
"yaml": "^2.1.3" | ||
"prettier": "^3.0.3", | ||
"yaml": "^2.3.2" | ||
} | ||
} |
Oops, something went wrong.