Skip to content

Instantly share code, notes, and snippets.

@vuldin
Created March 24, 2020 20:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vuldin/33e91c37bad0e11ccb48dc74a0345c49 to your computer and use it in GitHub Desktop.
Save vuldin/33e91c37bad0e11ccb48dc74a0345c49 to your computer and use it in GitHub Desktop.
integrates debugbear with github actions, using github repo secret
name: CI
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm i
- run: ./node_modules/.bin/debugbear --pageId=6383 --waitForResult --baseBranch=master --inferBuildInfo
env:
DEBUGBEAR_API_KEY: ${{ secrets.DEBUGBEAR_API_KEY }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment