Skip to content

fix(types): augment vue rather than @vue/runtime-core (#1565) #21

fix(types): augment vue rather than @vue/runtime-core (#1565)

fix(types): augment vue rather than @vue/runtime-core (#1565) #21

Workflow file for this run

name: test
on:
push:
paths-ignore:
- 'docs/**'
- 'playground/**'
- 'examples/**'
pull_request:
paths-ignore:
- 'docs/**'
- 'playground/**'
- 'examples/**'
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: '>=20'
cache: 'pnpm'
- name: Install
run: pnpm install --frozen-lockfile
- name: Install firebase-tools
run: pnpm add -g firebase-tools
- name: Lint
run: pnpm run lint
- name: Types
run: pnpm run test:types
- name: Test
run: firebase emulators:exec 'pnpm run test:unit'
- name: Build
run: pnpm run build
- name: Nuxt module build
working-directory: ./packages/nuxt
run: pnpm run build
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}