Skip to content

fix: package-lock.json for update deps that have the vulnerabilities #134

fix: package-lock.json for update deps that have the vulnerabilities

fix: package-lock.json for update deps that have the vulnerabilities #134

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
cache-dependency-path: package-lock.json
- name: Install Dependencies
run: npm ci
- name: Lint Check
run: npm run lint
- name: Build Check
run: npm run build