fix some errors

This commit is contained in:
Andrey Kondratev
2025-08-29 10:07:45 +05:00
parent ca48b338bc
commit 047c4a0e60
4 changed files with 32 additions and 6 deletions

View File

@@ -26,13 +26,13 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
cache: 'yarn'
- name: Install dependencies
run: npm ci
run: yarn install --frozen-lockfile
- name: Run npm audit
run: npm audit --audit-level=high
- name: Run yarn audit
run: yarn audit --level high
- name: Initialize CodeQL
uses: github/codeql-action/init@v3