Skip to content

---

--- #3206

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