We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f82dbc commit dfd50c2Copy full SHA for dfd50c2
.github/workflows/ci.yml
@@ -21,9 +21,12 @@ jobs:
21
- uses: actions/setup-node@v4
22
with:
23
node-version: 20
24
- - run: |
25
- npm install
26
- npm run lint
27
- npm run compile
28
- npm run test
29
- npm run dev
+ - uses: pnpm/action-setup@v4
+ with:
+ run_install: |
+ - recursive: false
+ - args: [--no-frozen-lockfile, --strict-peer-dependencies]
+ - 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