Skip to content

Commit

Permalink
Merge pull request #482 from galkahana/review
Browse files Browse the repository at this point in the history
Review
  • Loading branch information
galkahana committed Jul 1, 2023
2 parents 247679c + 2aefeb1 commit 5a34d8a
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,35 @@
name: Build


on:
push:
branches: [ "*" ]
pull_request:
branches: [ "master" ]

permissions:
contents: read

jobs:
dependency-review:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v3
- name: 'Dependency Review Push'
uses: actions/dependency-review-action@v3
if: ${{ github.event_name == 'push'}}
with:
fail-on-severity: high
base-ref: ${{ github.event.before }}
head-ref: ${{ github.sha }}
- name: 'Dependency Review'
uses: actions/dependency-review-action@v3
if: ${{ github.event_name != 'push'}}
with:
fail-on-severity: high
build-node-publish:
needs: dependency-review
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 5a34d8a

Please sign in to comment.