Skip to content

fix incorrect path to update-readme in yarn version command #301

fix incorrect path to update-readme in yarn version command

fix incorrect path to update-readme in yarn version command #301

name: 'CodeQL'
on:
push:
branches: [main]
schedule:
- cron: '30 8 * * 5'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use node_modules cache
uses: actions/cache@v3
with:
path: node_modules
key: yarn-node-16-lock-${{ hashFiles('yarn.lock') }}
restore-keys: |
yarn-node-16-lock-
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: javascript
- run: yarn install --frozen-lockfile
- run: yarn build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2