Skip to content
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
revert CI changes
  • Loading branch information
gregjopa committed Aug 22, 2023
commit e0f66f5ddc75c60551d860c94f263ce2092fc7c3
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