Skip to content

Bump actions/checkout from 3 to 4 #2668

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #2668

Workflow file for this run

name: Audit check if packages edited
on:
pull_request:
paths:
- 'frontend/**'
- '.github/workflows/audit.yml'
workflow_dispatch:
defaults:
run:
working-directory: ./frontend
jobs:
test:
name: Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
- uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn --prefer-offline --frozen-lockfile --check-files
- name: Run audit
run: yarn audit-ci --config audit-ci.jsonc