chore(deps): update vue to ^3.5.14 (#62) #203
This file contains hidden or 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' | |
| tags: | |
| - 'v[0-9]+.[0-9]+.*' | |
| pull_request: | |
| branches: | |
| - 'main' | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| # Run unit tests on main (for coverage reports), and all PRs | |
| test-unit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18 | |
| - uses: pnpm/action-setup@v2 | |
| name: Install pnpm | |
| with: | |
| version: 8 | |
| run_install: true | |
| - | |
| name: Run unit tests | |
| run: pnpm test:unit |