Skip to content

Commit

Permalink
ci: fix missing build step
Browse files Browse the repository at this point in the history
  • Loading branch information
sguimmara committed Sep 12, 2023
1 parent 4a4e9a0 commit d9b772b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = {
},
plugins: ['@typescript-eslint'],
root: true,
ignorePatterns: ['pages', 'dist', 'docs', 'vite.config.ts', '.eslintrc.cjs'],
ignorePatterns: ['pages', 'dist', 'coverage', 'docs', 'vite.config.ts', '.eslintrc.cjs'],
rules: {
quotes: [2, 'single', { 'avoidEscape': true }]
}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
- name: Build
run: |
npm install
npm run build
npm run lint
test:
Expand Down

0 comments on commit d9b772b

Please sign in to comment.