Skip to content

Commit

Permalink
ci: update CI workflow to include linting and formatting steps
Browse files Browse the repository at this point in the history
  • Loading branch information
alanlu-zyl committed Dec 23, 2024
1 parent 19ebc81 commit 76b061a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ jobs:
run: pnpm run build

- name: Lint
run: pnpm run lint
run: pnpm run lint:fix

- name: Format
run: pnpm run format:fix

- name: TypeCheck
run: pnpm run typecheck
Expand Down
3 changes: 1 addition & 2 deletions apps/nuxt-demo/app/app.vue
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<script setup lang="ts">
// import translation from 'zod-i18n-map/locales/zh-TW/zod.json'
import translation from '~/locales/zod/zh-TW.json'
import { changeLocale } from '@formkit/i18n'
import i18next from 'i18next'
import { ModalsContainer } from 'vue-final-modal'
import { z } from 'zod'
import { zodI18nMap } from 'zod-i18n-map'
import translation from '~/locales/zod/zh-TW.json'
useHead({
htmlAttrs: {
Expand Down

0 comments on commit 76b061a

Please sign in to comment.