chore: update pnpm-lock.yaml and pnpm-workspace.yaml to include V…
#28
Workflow file for this run
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: Coverage | |
| on: [push, pull_request] | |
| env: | |
| CI: true | |
| jobs: | |
| coveralls: | |
| name: Code Coverage - Coveralls | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v3 | |
| - name: Set Node.js version | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: lts/* | |
| - run: node --version | |
| - run: npm --version | |
| - name: Install deps and build (with cache) | |
| uses: bahmutov/npm-install@v1 | |
| - name: Run tests | |
| run: yarn test:coverage | |
| - name: Upload coverage results | |
| uses: coverallsapp/github-action@1.1.3 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |