Skip to content

Commit

Permalink
revert CI changes
Browse files Browse the repository at this point in the history
  • Loading branch information
gregjopa committed Aug 22, 2023
1 parent 89aa6aa commit e0f66f5
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: ⎔ Setup node
uses: actions/setup-node@v3
Expand All @@ -22,10 +24,7 @@ jobs:
run: >
find . -name package.json -maxdepth 2 -type f | while read -r file; do
directory=$(dirname "$file")
cd "$directory"
echo "$PWD"
ls -l
npm run format:check && cd -
cd "$directory" && npm run format:check && cd -
done
- name: 👕 Lint code with ESLint
Expand Down

0 comments on commit e0f66f5

Please sign in to comment.