Skip to content

Commit

Permalink
test(types): fix ci step
Browse files Browse the repository at this point in the history
  • Loading branch information
TheFedaikin committed Jan 22, 2023
1 parent 79de7e8 commit 150fa0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
- name: Build, Test & Coverage
run: |
npm run build
npm run test:types
npm run test:coverage
- name: Coveralls
uses: coverallsapp/github-action@master
Expand Down
3 changes: 2 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ export default defineConfig({
include: ['src/**/*.ts']
},
typecheck: {
include: ['**/*.type.{test,spec}.{ts,js}']
include: ['src/**/*.type.spec.ts'],
ignoreSourceErrors: true
}
}
})

0 comments on commit 150fa0a

Please sign in to comment.