Bump @typescript-eslint/parser from 4.33.0 to 8.18.2 #3511
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: Integration tests | |
| on: | |
| push: | |
| branches-ignore: | |
| - gh-pages | |
| paths: | |
| - package.json | |
| - package-lock.json | |
| - prisma/** | |
| - src/** | |
| - tsconfig.json | |
| - jest.config.js | |
| - .github/workflows/integration-tests.yml | |
| jobs: | |
| integration-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: '14.x' | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Launch services | |
| run: source .envrc; npm run dev:services | |
| - name: Run integration tests | |
| run: source .envrc; npm run integration |