Skip to content

Instantly share code, notes, and snippets.

@damian-burke
Created September 13, 2020 20:57
Show Gist options
  • Select an option

  • Save damian-burke/e90e98e820cf83cd60c16d7533cfa7e9 to your computer and use it in GitHub Desktop.

Select an option

Save damian-burke/e90e98e820cf83cd60c16d7533cfa7e9 to your computer and use it in GitHub Desktop.
DangerJS on GitHub Actions
name: DangerJS
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Install Danger
run: yarn add danger
- name: Run Danger
run: yarn danger ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment