diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aa2e15c..f661041 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,6 +3,7 @@ name: CI on: pull_request: push: + branches: ["main"] branches: ['main'] jobs: diff --git a/.github/workflows/security-scan.yml b/.github/workflows/security-scan.yml index 0b9caab..5c406da 100644 --- a/.github/workflows/security-scan.yml +++ b/.github/workflows/security-scan.yml @@ -23,6 +23,7 @@ jobs: - name: Dependency Review uses: actions/dependency-review-action@v4 + continue-on-error: true npm-audit: name: NPM Security Audit runs-on: ubuntu-latest @@ -34,6 +35,7 @@ jobs: uses: actions/setup-node@v4 with: node-version: '20' + - name: Install dependencies run: npm install - name: Run npm audit