deps: update dependency semver to v7.5.2 [security] #1480
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull request check | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
pull_request_check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
- run: yarn install --immutable | |
- run: yarn run build | |
- run: npx danger ci --use-github-checks | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DANGER_FAKE_CI: GitHub | |
DANGER_TEST_REPO: oriflame/conventional-changelog-tools | |
DANGER_TEST_PR: ${{ github.event.number }} |