feat: add application approved event #780
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 |