Skip to content

feat(instructions): name is the default search field (#161) #95

feat(instructions): name is the default search field (#161)

feat(instructions): name is the default search field (#161) #95

Workflow file for this run

name: Security checks
on:
pull_request:
paths:
- package.json
- yarn.lock
push:
branches:
- main
jobs:
security:
runs-on: ubuntu-latest
steps:
- name: Fetch Sources
uses: actions/checkout@v5
- name: Enable Corepack
run: corepack enable
- name: Setup Node.js 22.x
uses: actions/setup-node@v5
with:
node-version: 22.x
cache: "yarn"
- name: Install dependencies
run: yarn install --immutable --check-cache --check-resolutions
- name: Check project packages for deprecated
run: yarn npm audit --all --severity moderate
- name: Check all packages for vulnerabilities
run: yarn npm audit --all --recursive --severity high