Skip to content

Commit 542af79

Browse files
committed
chore(ci): bugfix, ci is not supported by pnpm
1 parent 41fd8d5 commit 542af79

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/ci-checks.yaml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ jobs:
4040
${{ runner.OS }}-pnpm-store-
4141
4242
- name: Install Dependencies
43-
run: pnpm ci
43+
run: pnpm install --frozen-lockfile
44+
4445

4546
lint:
4647
needs: install-dependencies
@@ -72,7 +73,8 @@ jobs:
7273
${{ runner.OS }}-pnpm-store-
7374
7475
- name: Install Dependencies
75-
run: pnpm ci
76+
run: pnpm install --frozen-lockfile
77+
7678
- name: Run Linter
7779
run: packagenpm run lint
7880

@@ -107,7 +109,8 @@ jobs:
107109
108110
109111
- name: Install Dependencies
110-
run: pnpm ci
112+
run: pnpm install --frozen-lockfile
113+
111114
- name: Run Prettier
112115
run: npm run check-format
113116

@@ -141,6 +144,7 @@ jobs:
141144
${{ runner.OS }}-pnpm-store-
142145
143146
- name: Install Dependencies
144-
run: pnpm ci && npm run build
147+
run: pnpm install --frozen-lockfile
148+
&& npm run build
145149
- name: Run Tests
146150
run: pnpm run test

0 commit comments

Comments
 (0)