Skip to content

Bump vitest from 3.0.4 to 3.0.5 in the npm_and_yarn group across 1 directory #19

Bump vitest from 3.0.4 to 3.0.5 in the npm_and_yarn group across 1 directory

Bump vitest from 3.0.4 to 3.0.5 in the npm_and_yarn group across 1 directory #19

Workflow file for this run

name: Tests
on:
pull_request: {}
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
permissions: {}
jobs:
vitest:
name: Vitest
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: "yarn"
node-version: "lts/*"
- name: Install Deps
run: "yarn install --frozen-lockfile"
- name: Run tests
run: yarn test --coverage
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: coverage
path: |
**/coverage
!**/coverage/lcov-report
!**/node_modules/**