-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into docs/ephemeral-pull
- Loading branch information
Showing
4 changed files
with
46 additions
and
29 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 |
---|---|---|
|
@@ -9,15 +9,13 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Install pnpm | ||
uses: pnpm/[email protected] | ||
uses: pnpm/action-setup@v4 | ||
- name: Install Node 20 | ||
uses: actions/setup-node@v4 | ||
with: | ||
version: 8.x.x | ||
- name: Install Node 18 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18' | ||
node-version: '20' | ||
cache: pnpm | ||
- name: Install dependencies | ||
run: pnpm install --frozen-lockfile | ||
|
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,8 @@ | ||
{ | ||
"typescript.enablePromptUseWorkspaceTsdk": true, | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
"prettier.prettierPath": "node_modules/prettier/index.cjs", | ||
"[mdx]": { | ||
"editor.wordWrap": "on" | ||
} | ||
} |
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,20 +1,20 @@ | ||
{ | ||
"private": true, | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"fmt": "prettier --write .", | ||
"fmt:check": "prettier --check ." | ||
}, | ||
"devDependencies": { | ||
"prettier": "^2.8.8", | ||
"prettier-plugin-pkg": "^0.17.1" | ||
"prettier": "^3.3.2", | ||
"prettier-plugin-pkg": "^0.18.1" | ||
}, | ||
"prettier": { | ||
"bracketSpacing": false, | ||
"printWidth": 120, | ||
"semi": false, | ||
"singleQuote": true, | ||
"trailingComma": "all", | ||
"pluginSearchDirs": false, | ||
"plugins": [ | ||
"prettier-plugin-pkg" | ||
] | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.