Remove components dependencies from end result #10
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: Formatting validator | |
on: push | |
jobs: | |
formatting-validator: | |
name: Prettier validation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: "" | |
- name: Setup NodeJs | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18.4.0" | |
- name: Install dependencies | |
run: | | |
npm i prettier --global | |
npm i prettier-plugin-svelte --global | |
prettier --write . | |
git status | |
touch format_error.txt | |
echo 'Changed Files:' | |
git diff --name-only | |
git diff --name-only >> format_error.txt | |
if [ -s format_error.txt ]; then | |
echo "ERROR IN FORMATTING, PLEASE RUN PRETTIER ON THE CODEBASE BEFORE COMMITTING" | |
echo "Files:" | |
cat format_error.txt | |
exit 1 | |
fi |