Skip to content

Commit

Permalink
Update front.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AGPWR authored Jun 24, 2024
1 parent 0bfad29 commit d09e334
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/front.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,20 @@ jobs:
runs-on: ubuntu-latest
# Specifies the type of runner that the job will run on.
steps:
- name: Checkout code
- uses: actions/checkout@v4
# Checks out the repository code so that the workflow can access it.

- name: Scan dependencies for security vulnerabilities
# install and authenticate Snyk with the provided token, then run security tests.
run: |
npm install -g snyk
snyk auth ${{ secrets.SNYK_TOKEN }}
snyk test
# Install and authenticate Snyk with the provided token, then run security tests.

linter:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
# Checks out the repository code so that the workflow can access it.

- name: Run Super-Linter
uses: github/super-linter@v4
# Run Super-Linter

0 comments on commit d09e334

Please sign in to comment.