UD-12010 updated webhook verify to be more secure #767
Workflow file for this run
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 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: 16.x | |
| - run: npm ci | |
| - run: npm run lint | |
| - run: npm run build | |
| - run: | | |
| touch .env | |
| echo UNIT_TOKEN=${{ secrets.UNIT_TOKEN }} >> .env | |
| echo UNIT_API_URL=${{ secrets.UNIT_API_URL }} >> .env | |
| echo TEST_COUNTERPARTY_PLAID_TOKEN=${{ secrets.TEST_COUNTERPARTY_PLAID_TOKEN }} >> .env | |
| - run: npm run test |