Skip to content

Commit f847f91

Browse files
github workflow
1 parent 8f82dbc commit f847f91

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/ci.yml

+7-6
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,13 @@ jobs:
1818
- name: Check Passed
1919
run: echo The actor is an organization member
2020
- uses: actions/checkout@v4
21+
- uses: pnpm/action-setup@v4
22+
with:
23+
run_install: false
2124
- uses: actions/setup-node@v4
2225
with:
2326
node-version: 20
24-
- run: |
25-
npm install
26-
npm run lint
27-
npm run compile
28-
npm run test
29-
npm run dev
27+
- run: pnpm install --no-frozen-lockfile
28+
- run: pnpm run lint
29+
- run: pnpm run check-format
30+
- run: pnpm run dist

0 commit comments

Comments
 (0)