Skip to content

Commit dfd50c2

Browse files
github workflow
1 parent 8f82dbc commit dfd50c2

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
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

0 commit comments

Comments
 (0)