Skip to content

Commit

Permalink
fix: run prettier / eslint on build
Browse files Browse the repository at this point in the history
  • Loading branch information
framp committed Mar 1, 2024
1 parent 7cfcf66 commit 6f429fe
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codequality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
run: npm ci

- name: Prettier
run: npm run prettier:check
run: npm run pretty

- name: Lint
run: npm run lint:check
run: npm run lint

# - name: Type check
# run: pnpm typecheck
2 changes: 1 addition & 1 deletion .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ jobs:
run: npm ci

- name: Unit Tests
run: npm run test:unit
run: npm run test
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"lint": "eslint --fix . --ext .js --ext .ts --ext .tsx --ext md",
"pretty": "prettier -l --write \"src/**/*.{js,ts,tsx,md,mdx,css,scss}\"",
"start": "vinxi start",
"test": ""
"test": "true"
},
"commitlint": {
"extends": [
Expand Down
2 changes: 1 addition & 1 deletion src/app.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind utilities;

0 comments on commit 6f429fe

Please sign in to comment.