Bump the npm_and_yarn group across 1 directory with 2 updates #86
Workflow file for this run
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: Build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
- name: Install dependencies | |
run: | | |
npm ci | |
- name: Run lint | |
run: | | |
npm run lint | |
- name: Run build | |
run: | | |
npm run build | |
- name: Start environment | |
run: | | |
npm run test-db:up | |
- name: Run test | |
run: | | |
npm run test | |
- name: Report Coverage | |
if: always() | |
uses: davelosert/vitest-coverage-report-action@v2 |