Skip to content

deps(dev): bump the dev-dependencies group with 3 updates #676

deps(dev): bump the dev-dependencies group with 3 updates

deps(dev): bump the dev-dependencies group with 3 updates #676

Workflow file for this run

name: Security Scan
on:
push:
branches: [main]
workflow_dispatch:
pull_request:
schedule:
- cron: '0 0 * * *' # every day at midnight
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
audit:
runs-on: ubuntu-24.04
name: npm audit
steps:
- uses: actions/checkout@v7
- name: Setup Node
uses: actions/setup-node@v7
with:
node-version: '22'
- name: Install dependencies
run: npm ci
- name: Run npm audit
run: npm audit