Merge pull request #1358 from LeChatErrant/dependabot/npm_and_yarn/ty… #3450
This file contains 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 |