style(payment): Add note about number of email aliases on sub-accounts. #237
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: Runbox7 CI | |
| on: | |
| [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| NODE_OPTIONS: "--max-old-space-size=2048" | |
| strategy: | |
| matrix: | |
| phase: ['lint', 'policy', 'unit', 'e2e', 'build'] | |
| name: Run ${{ matrix.phase }} tests | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: '16.x' | |
| cache: 'npm' | |
| - run: npm ci | |
| - run: npm run ci-tests -- ${{ matrix.phase }} |