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

Removing yarn.lock #24

Merged
merged 3 commits into from
Jul 22, 2024
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
8 changes: 2 additions & 6 deletions .github/actions/publish/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,14 @@ inputs:
required: false
# TODO: where does storybook output by default?
default: 'storybook-static'
install_yarn:
description: 'Install yarn.'
required: false
default: 'npm install -g yarn'
install_command:
description: 'Specifies the command to run the installation.'
required: false
default: 'yarn install --immutable --immutable-cache --check-cache'
default: 'npm install'
build_command:
description: 'Specifies the command to run after npm ci for the build'
required: false
default: 'yarn build-storybook'
default: 'npm run build-storybook'
outputs:
page_url:
description: "The URL of the page"
Expand Down
7 changes: 2 additions & 5 deletions .github/actions/test/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,9 @@ runs:
- name: Enable corepack
shell: bash
run: corepack enable
- name: Install yarn
shell: bash
run: npm i -g yarn
- name: Install dependencies
shell: bash
run: yarn install --immutable --immutable-cache --check-cache
run: npm install
- name: 'Test'
shell: bash
run: yarn test-ci
run: npm run test-ci
Loading
Loading