Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(ui): ensure yarn lockfile is the source of truth #3038

Merged
merged 3 commits into from
Apr 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,10 @@ jobs:
node-version-file: .node-version
cache: yarn
- name: Install dependencies and build app
run: yarn install --frozen-lockfile && yarn --prefer-offline && yarn bootstrap && yarn build
run: yarn install --frozen-lockfile --prefer-offline && yarn bootstrap && yarn build
# 👇 Adds Chromatic as a step in the workflow
- name: Publish to Chromatic
if: '!github.event.pull_request.head.repo.fork'
uses: chromaui/action@d51b84e79d164fbe8fc5bb7175695d88ddd04b72 # v1
# Chromatic GitHub Action options
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
${{ runner.os }}-yarn-

- name: Install project dependencies
run: yarn --prefer-offline
run: yarn install --frozen-lockfile --prefer-offline
working-directory: ui

- run: yarn build
Expand Down