Skip to content

Commit

Permalink
fix(ci): delete redundant snyk job
Browse files Browse the repository at this point in the history
  • Loading branch information
cesconix committed Aug 10, 2024
1 parent 0b8ae5b commit 34a382c
Showing 1 changed file with 2 additions and 28 deletions.
30 changes: 2 additions & 28 deletions .github/workflows/turbo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Turbo CI

on:
push:
branches: ['main']
branches: ["main"]
pull_request:
types: [opened, synchronize]

Expand All @@ -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
Expand All @@ -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/[email protected]
with:
args: --all-projects
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}

0 comments on commit 34a382c

Please sign in to comment.