Create Migrate Production DB Job #105
Workflow file for this run
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: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
integration-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build node env | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Build Container Images | |
id: build-docker-images | |
run: docker-compose build | |
- name: Run Integration Tests | |
id: integration-tests | |
run: npm run e2e:run |