Skip to content

Commit f35ec06

Browse files
github workflow
1 parent 8f82dbc commit f35ec06

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

.github/workflows/ci.yml

+9-6
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,12 @@ jobs:
2121
- uses: actions/setup-node@v4
2222
with:
2323
node-version: 20
24-
- run: |
25-
npm install
26-
npm run lint
27-
npm run compile
28-
npm run test
29-
npm run dev
24+
- uses: pnpm/action-setup@v4
25+
with:
26+
run_install: |
27+
- recursive: false
28+
- args: [--no-frozen-lockfile, --strict-peer-dependencies]
29+
- run: pnpm install --no-frozen-lockfile
30+
- run: pnpm run lint
31+
- run: pnpm run check-format
32+
- run: pnpm run dist

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
}
1818
},
1919
"dependencies": {
20-
"@typescript-eslint/eslint-plugin": "^7.7.0",
21-
"@typescript-eslint/parser": "^7.7.0",
20+
"@typescript-eslint/eslint-plugin": "^7.2.0",
21+
"@typescript-eslint/parser": "^7.2.0",
2222
"@types/node": "20.12.2",
2323
"esbuild": "^0.20.2",
2424
"eslint": "^8.57.0",

pnpm-lock.yaml

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)