Security audit #489
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# Runs daily | |
name: Security audit | |
'on': | |
schedule: | |
- cron: "27 04 * * *" | |
# Run manually | |
workflow_dispatch: | |
jobs: | |
security_audit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: rustsec/audit-check@v1.4.1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: check environment | |
run: | | |
node -v | |
npm -v | |
yarn -v | |
- name: npm audit gui-react | |
run: | | |
cd gui-react | |
yarn audit |