chore(deps-dev): bump the vitest group across 1 directory with 2 updates #820
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: | |
- master | |
pull_request: | |
env: | |
CI: true | |
jobs: | |
test-and-build: | |
name: 'Test and build' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
- run: npm ci | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: code-coverage | |
path: coverage | |
upload-code-coverage: | |
name: 'Upload code coverage' | |
needs: ['test-and-build'] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
with: | |
name: code-coverage | |
path: coverage | |
- uses: coverallsapp/github-action@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |