build(deps-dev): bump @wdio/cli from 9.1.2 to 9.4.2 #299
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Formating validation | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
prettier: | |
name: Prettier Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Run Prettier | |
id: prettier-run | |
uses: rutajdash/[email protected] | |
with: | |
config_path: ./.prettierrc | |
file_pattern: "*.{js,jsx,ts,tsx,json}" | |
# This step only runs if prettier finds errors causing the previous step to fail | |
# This steps lists the files where errors were found | |
- name: Prettier Output | |
if: ${{ failure() }} | |
shell: bash | |
run: | | |
echo "The following files aren't formatted properly:" | |
echo "${{steps.prettier-run.outputs.prettier_output}}" |