Skip to content

Commit

Permalink
Linting (#211)
Browse files Browse the repository at this point in the history
Replace prettier+eslint in app and styles JS projects with biome
  • Loading branch information
bdon authored Jan 23, 2024
1 parent b838f8f commit 9d5d286
Show file tree
Hide file tree
Showing 20 changed files with 670 additions and 1,802 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,11 @@ jobs:
node-version: 18.x
- run: echo "VITE_GIT_SHA=$(git rev-parse --short HEAD)" >> app/.env
- name: Check styles
run: npm install && npx tsc --noEmit
run: npm install && npx tsc --noEmit && npm run check
working-directory: styles
- run: npm install && npx tsc --noEmit && npm run prettier-check && npx vite build
- run: npm install && npx tsc --noEmit && npm run check && npx vite build
working-directory: app
- run: python .github/check_examples.py
- uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,3 @@ jobs:
- name: Ensure code formatted with mvn spotless:apply
working-directory: tiles
run: mvn spotless:check
- name: Check styles
run: npm install && npx tsc --noEmit && npm test && npm run prettier-check
working-directory: styles
- run: python .github/check_examples.py
Loading

0 comments on commit 9d5d286

Please sign in to comment.