Skip to content

chore: use correct prettier version in ci #8321

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

Merged
merged 24 commits into from
Jul 5, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fixup! Revert action file
  • Loading branch information
Emyrk committed Jul 5, 2023
commit 74e5b50b931bf8ba72966271b4280f1fedb053b3
10 changes: 0 additions & 10 deletions .github/actions/setup-node/action.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,6 @@
name: "Setup Node"
description: |
Sets up the node environment for tests, builds, etc.
inputs:
skip-yarn-install:
description: |
Skip 'yarn_install.sh' script. Be careful using this as it will not
install any dependencies. This is only useful if you do not need all
the dependencies installed, and will control the dependencies yourself.

required: false
default: "false"
runs:
using: "composite"
steps:
Expand All @@ -22,4 +13,3 @@ runs:
- name: Install node_modules
shell: bash
run: ./scripts/yarn_install.sh
if: ${{ inputs.skip-yarn-install != 'true' }}