Skip to content

Commit 304e26e

Browse files
committed
cicd: use frozen lockfile
1 parent 35cd021 commit 304e26e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
node-version: ${{ matrix.node-version }}
2626
cache: pnpm
27-
- run: pnpm i
27+
- run: pnpm i --frozen-lockfile
2828
- name: types
2929
run: pnpm check:types
3030
- name: build
@@ -58,7 +58,7 @@ jobs:
5858
steps:
5959
- uses: actions/checkout@v4
6060
- uses: asdf-vm/actions/install@v3
61-
- run: pnpm i
61+
- run: pnpm i --frozen-lockfile
6262
- name: test
6363
run: pnpm test:coverage
6464
- name: codecov

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
fetch-depth: 0 # Need history for changelog generation
2626
- uses: asdf-vm/actions/install@v3
27-
- run: pnpm i
27+
- run: pnpm i --frozen-lockfile
2828
- name: types
2929
run: pnpm check:types
3030
- name: build

0 commit comments

Comments
 (0)