From b4691095fc2692fb8229909aec082ad014f70307 Mon Sep 17 00:00:00 2001 From: Trombitas Imre-Sandor Date: Tue, 9 Jul 2024 10:42:47 +0300 Subject: [PATCH] test: snyk monitor --- .github/workflows/snyk.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/snyk.yml diff --git a/.github/workflows/snyk.yml b/.github/workflows/snyk.yml new file mode 100644 index 0000000..21ba5b9 --- /dev/null +++ b/.github/workflows/snyk.yml @@ -0,0 +1,13 @@ +name: Example workflow using Snyk +on: push +jobs: + security: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Run Snyk to check for vulnerabilities + uses: snyk/actions/node@master + env: + SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} + with: + command: monitor \ No newline at end of file