Skip to content

chore(deps-dev): bump vitest from 1.1.3 to 2.0.0 #10

chore(deps-dev): bump vitest from 1.1.3 to 2.0.0

chore(deps-dev): bump vitest from 1.1.3 to 2.0.0 #10

Workflow file for this run

name: Build and Test
on:
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: Install Node v20
uses: actions/setup-node@v3
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org/'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Lint
run: npm run lint
- name: Run tests
run: npm run test