chore(deps): update devdependency vue-tsc to v1.8.8 #3123
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: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
ci: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node: [16] | |
steps: | |
- uses: actions/checkout@v3 | |
- run: corepack enable | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: "pnpm" | |
- name: 📦 Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: 🚧 Set up project | |
run: pnpm dev:prepare | |
- name: 💪 Test types | |
run: pnpm test:types | |
- name: 🛠 Build project | |
run: pnpm build | |
- name: 🧪 Test project | |
run: pnpm test -- --coverage | |
- name: 🟩 Coverage | |
uses: codecov/codecov-action@v3 |