Created
March 24, 2020 20:55
-
-
Save vuldin/33e91c37bad0e11ccb48dc74a0345c49 to your computer and use it in GitHub Desktop.
integrates debugbear with github actions, using github repo secret
This file contains hidden or 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: 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