From 34a382cd041b470ecb662431ef1311fd83b8a6b0 Mon Sep 17 00:00:00 2001 From: Francesco Pasqua Date: Sat, 10 Aug 2024 13:54:03 +0200 Subject: [PATCH] fix(ci): delete redundant snyk job --- .github/workflows/turbo.yml | 30 ++---------------------------- 1 file changed, 2 insertions(+), 28 deletions(-) diff --git a/.github/workflows/turbo.yml b/.github/workflows/turbo.yml index 7849f65..778e41b 100644 --- a/.github/workflows/turbo.yml +++ b/.github/workflows/turbo.yml @@ -2,7 +2,7 @@ name: Turbo CI on: push: - branches: ['main'] + branches: ["main"] pull_request: types: [opened, synchronize] @@ -21,7 +21,7 @@ jobs: uses: actions/setup-node@v4 with: node-version: 20 - cache: 'pnpm' + cache: "pnpm" - name: Install run: pnpm install --no-frozen-lockfile @@ -31,29 +31,3 @@ jobs: - name: Test run: pnpm test - - security: - name: Snyk Security Scan - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Setup PNPM - uses: pnpm/action-setup@v3 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: 'pnpm' - - - name: Install - run: pnpm install --no-frozen-lockfile - - - name: Snyk - uses: snyk/actions@0.4.0 - with: - args: --all-projects - env: - SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}