Skip to content

chore: bump the vitest group with 2 updates #1782

chore: bump the vitest group with 2 updates

chore: bump the vitest group with 2 updates #1782

Workflow file for this run

name: Tests
on:
pull_request:
types:
- opened
- ready_for_review
- synchronize
- labeled
branches:
- main
permissions:
contents: read
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
timeout-minutes: 5
if: ${{ github.event.action == 'opened' || github.event.action == 'ready_for_review' || github.event.action == 'synchronize' || (github.event.action == 'labeled' && github.event.label.name == 'force ci') }}
steps:
- uses: step-security/harden-runner@e3f713f2d8f53843e71c69a996d56f51aa9adfb9 # v2.14.1
with:
egress-policy: block
allowed-endpoints: >
api.github.com:443
github.com:443
registry.npmjs.org:443
*.cloudflare.com:443
release-assets.githubusercontent.com:443
- name: Git Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Node
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: lts/*
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run Tests
run: node --run test