Skip to content

Bump vite from 4.5.0 to 5.2.8 in /src/frontend #270

Bump vite from 4.5.0 to 5.2.8 in /src/frontend

Bump vite from 4.5.0 to 5.2.8 in /src/frontend #270

Workflow file for this run

name: "E2E NPM Audit"
on:
pull_request:
branches:
- main
jobs:
scan:
name: npm audit
runs-on: ubuntu-latest
steps:
# Checkout Repository
- uses: actions/checkout@v4
# Install e2e Dependencies
- name: install dependencies
run: |
cd src/e2e/
npm ci
# Checkout for moderate or higher vulnerabilities in e2e package.json
- uses: oke-py/npm-audit-action@v2
with:
audit_level: high
github_token: ${{ secrets.GITHUB_TOKEN }}
working_directory: src/e2e