chore(deps-dev): bump vitest from 3.0.3 to 3.0.5 in the npm_and_yarn group #2537
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: Audit check | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "30 8 * * *" | |
push: | |
branches: ["main"] | |
paths: | |
- "pnpm-lock.yaml" | |
pull_request: | |
types: [opened, synchronize] | |
paths: | |
- "pnpm-lock.yaml" | |
jobs: | |
init: | |
name: Check audit | |
timeout-minutes: 15 | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
runs-on: macos-14 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 | |
- run: pnpm --version | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: "pnpm" | |
cache-dependency-path: "**/pnpm-lock.yaml" | |
- name: install | |
run: pnpm install --frozen-lockfile --prefer-offline | |
- name: Audit | |
run: pnpm audit |