chore(deps): update dependency @vueuse/nuxt to v11 #175
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
paths-ignore: | |
- "apps/docs/**" | |
- ".md" | |
branches: | |
- main | |
pull_request: | |
paths-ignore: | |
- "apps/docs/**" | |
- "*.md" | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 9.7.0 | |
run_install: true | |
- name: ESLint | |
run: pnpm run lint | |
- name: Types | |
run: pnpm run typecheck | |
- name: Check i18n errors | |
run: pnpm --filter @shorter/web script:compare-i18n-errors | |
- name: Build | |
run: pnpm run build |