Skip to content

Commit

Permalink
Merge branch 'main' into feature/init-skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
khoilen committed Dec 30, 2024
2 parents 986bfc4 + acab8d9 commit fe8d045
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/snyk.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@
name: Snyk Security Check
on: [push,pull_request]
on:
push:
pull_request:

jobs:
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies with pnpm
run: pnpm install --no-frozen-lockfile
- name: Run Snyk to check for vulnerabilities
uses: snyk/actions/node@master
env:
Expand Down

0 comments on commit fe8d045

Please sign in to comment.