We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f82dbc commit b874402Copy full SHA for b874402
.github/workflows/ci.yml
@@ -18,12 +18,11 @@ jobs:
18
- name: Check Passed
19
run: echo The actor is an organization member
20
- uses: actions/checkout@v4
21
+ - uses: pnpm/action-setup@v4
22
- uses: actions/setup-node@v4
23
with:
24
node-version: 20
- - run: |
25
- npm install
26
- npm run lint
27
- npm run compile
28
- npm run test
29
- npm run dev
+ - run: pnpm install --no-frozen-lockfile
+ - run: pnpm run lint
+ - run: pnpm run check-format
+ - run: pnpm run dist
0 commit comments