Skip to content

Bump the npm_and_yarn group across 1 directory with 2 updates #86

Bump the npm_and_yarn group across 1 directory with 2 updates

Bump the npm_and_yarn group across 1 directory with 2 updates #86

Workflow file for this run

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