We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02a2996 commit b4721d6Copy full SHA for b4721d6
.github/workflows/tests.yml
@@ -8,18 +8,25 @@ jobs:
8
runs-on: ubuntu-latest
9
steps:
10
- name: Checkout repository
11
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
12
+ with:
13
+ fetch-depth: 0
14
15
- name: Install Node
- uses: actions/setup-node@v2
16
+ uses: actions/setup-node@v4
17
with:
18
node-version: 22
19
20
+ - uses: pnpm/action-setup@v4.1.0
21
+ name: Install pnpm
22
23
+ run_install: false
24
+
25
- name: Install deps
26
run: pnpm i --frozen-lockfile
27
28
- name: Build
- run: yarn run build
29
+ run: pnpm run build
30
31
- name: Run ESLint & Prettier
- run: yarn run lint
32
+ run: pnpm run lint
0 commit comments