feat(pie-toast-provider): DSW-2222 toast provider basic functionality #8980
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: DangerJS PR Checks | |
on: | |
pull_request: | |
types: [opened, edited, reopened, synchronize, ready_for_review] | |
jobs: | |
danger-checks: | |
permissions: | |
contents: read | |
if: ${{ github.event.pull_request.draft == false && github.actor != 'dependabot[bot]' }} | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the Repo | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
# Setup Repo | |
- name: Setup Repo | |
uses: ./.github/actions/setup-repo | |
with: | |
node-version: 20 | |
os: ubuntu-latest | |
# Run Danger Checks | |
- name: Danger | |
run: yarn danger ci --failOnErrors | |
env: | |
DANGER_GITHUB_API_TOKEN: ${{ secrets.DANGER_GITHUB_API_TOKEN }} |