Skip to content

content(react): added the video for the solid lesson in react #154

content(react): added the video for the solid lesson in react

content(react): added the video for the solid lesson in react #154

Workflow file for this run

#
# Runs npm audit and creates an issue if vulnerabilities are found.
#
# Created September 24th, 2023
# @author ywarezk
# @license MIT
#
name: npm audit
on:
pull_request:
push:
branches:
- main
jobs:
scan:
name: npm audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.15.0
cache: 'npm'
- name: install dependencies
run: npm ci
- uses: oke-py/npm-audit-action@v2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
issue_assignees: oke-py
issue_labels: vulnerability,test
dedupe_issues: true