Skip to content

Commit

Permalink
🔧 Update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sankaSanjeeva committed Sep 14, 2024
1 parent 0cfea17 commit e77cd6f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
- name: Install dependencies
run: yarn install

- name: Run TypeScript check
run: npx tsc -p tsconfig.json --noEmit
- name: Run TypeScript check and Build
run: yarn build

- name: Run ESLint
run: yarn eslint src/**/*.{js,ts,tsx}
run: yarn lint

- name: Execute Unit tests
run: yarn vitest
run: yarn test
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prepare": "husky"
},
Expand Down

0 comments on commit e77cd6f

Please sign in to comment.