Skip to content

Commit d0d677c

Browse files
committed
fix: Do use lockfile!
1 parent 76e035d commit d0d677c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/addon-docs.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
# Fetch tags pointing to the current commit
2424
TAGS=$(git tag --points-at $GITHUB_SHA)
2525
echo "Tags found: $TAGS"
26-
26+
2727
# Check if a tag exists and if the ref is 'refs/heads/main' or 'refs/heads/master'
2828
if [ -n "$TAGS" ] && ([[ "${GITHUB_REF}" == "refs/heads/main" ]] || [[ "${GITHUB_REF}" == "refs/heads/master" ]]); then
2929
echo "SHORT_CIRCUIT=true" >> $GITHUB_ENV
@@ -41,7 +41,7 @@ jobs:
4141
cache: pnpm
4242
- name: Install Dependencies
4343
if: env.SHORT_CIRCUIT == 'false'
44-
run: pnpm install --no-lockfile
44+
run: pnpm install
4545
- name: Deploy Docs
4646
if: env.SHORT_CIRCUIT == 'false'
47-
run: pnpm ember deploy production
47+
run: pnpm ember deploy production

.github/workflows/ci-cd.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
with:
5252
version: 9
5353
- name: Install dependencies
54-
run: pnpm i --no-lockfile
54+
run: pnpm i
5555
- name: Test
5656
run: pnpm test:${{ matrix.script-name }}
5757

tests/dummy/app/templates/docs/deploying.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
cache: pnpm
137137
- name: Install Dependencies
138138
if: env.SHORT_CIRCUIT == 'false'
139-
run: pnpm install --no-lockfile
139+
run: pnpm install
140140
- name: Deploy Docs
141141
if: env.SHORT_CIRCUIT == 'false'
142142
run: pnpm ember deploy production

0 commit comments

Comments
 (0)