File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -43,11 +43,14 @@ jobs:
4343 - name : 📦 Install dependencies
4444 run : pnpm install --frozen-lockfile
4545
46- - name : 🛠 Build project
47- run : pnpm build
48-
4946 - name : 🧪 Test project
5047 run : pnpm test -- --coverage
5148
49+ - name : 💪 Test types
50+ run : pnpm test:types
51+
52+ - name : 🛠 Build project
53+ run : pnpm build
54+
5255 - name : 🟩 Coverage
5356 uses : codecov/codecov-action@v3
Original file line number Diff line number Diff line change 4848 "prepublishOnly" : " pnpm lint && pnpm test && pinst --disable" ,
4949 "release" : " release-it" ,
5050 "test" : " vitest run" ,
51+ "test:types" : " tsc --noEmit" ,
5152 "postinstall" : " husky install" ,
5253 "postpublish" : " pinst --enable"
5354 },
Original file line number Diff line number Diff line change 55} from '@ionic/vue-router'
66
77import { defineNuxtPlugin , useRuntimeConfig } from '#imports'
8+ // @ts -expect-error Virtual module generated by Nuxt
89import routes from '#build/routes'
910
1011export default defineNuxtPlugin ( nuxtApp => {
You can’t perform that action at this time.
0 commit comments