Skip to content

Commit

Permalink
ci: use frozen lockfile with new pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbert committed Jun 19, 2023
1 parent b512796 commit d264de3
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
name: Install pnpm
id: pnpm-install
with:
version: 7
version: 8.3
run_install: false

- name: Get pnpm store directory
Expand All @@ -40,7 +40,7 @@ jobs:
- name: Install dependencies
run: |
pnpm install --no-frozen-lockfile
pnpm install --frozen-lockfile
pnpm ls --recursive
lint:
Expand All @@ -60,7 +60,7 @@ jobs:
name: Install pnpm
id: pnpm-install
with:
version: 7
version: 8.3
run_install: false

- name: Get pnpm store directory
Expand All @@ -77,7 +77,7 @@ jobs:
- name: Install dependencies
run: |
pnpm install --no-frozen-lockfile
pnpm install --frozen-lockfile
- name: "Continuous Integration: lint"
run: |
Expand All @@ -100,7 +100,7 @@ jobs:
name: Install pnpm
id: pnpm-install
with:
version: 7
version: 8.3
run_install: false

- name: Get pnpm store directory
Expand All @@ -117,7 +117,7 @@ jobs:
- name: Install dependencies
run: |
pnpm install --no-frozen-lockfile
pnpm install --frozen-lockfile
- name: "Continuous Integration: build"
env:
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
name: Install pnpm
id: pnpm-install
with:
version: 7
version: 8.3
run_install: false

- name: Get pnpm store directory
Expand All @@ -173,7 +173,7 @@ jobs:
- name: Install dependencies
run: |
pnpm install --no-frozen-lockfile
pnpm install --frozen-lockfile
- name: "Continuous Integration: test"
run: |
Expand All @@ -198,7 +198,7 @@ jobs:
name: Install pnpm
id: pnpm-install
with:
version: 7
version: 8.3
run_install: false

- name: Get pnpm store directory
Expand All @@ -215,7 +215,7 @@ jobs:
- name: Install dependencies
run: |
pnpm install --no-frozen-lockfile
pnpm install --frozen-lockfile
- name: "Continuous Integration: build Storybook with animation disabled"
env:
Expand Down Expand Up @@ -280,7 +280,7 @@ jobs:
name: Install pnpm
id: pnpm-install
with:
version: 7
version: 8.3
run_install: false

- name: Get pnpm store directory
Expand All @@ -297,7 +297,7 @@ jobs:
- name: "Continuous Deployment: install"
run: |
pnpm install --no-frozen-lockfile
pnpm install --frozen-lockfile
pnpm ls --recursive
- name: "Continuous Deployment: build"
Expand Down

0 comments on commit d264de3

Please sign in to comment.