Add workflow to run tests on PR to main #10
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: Run Tests | |
on: | |
pull_request: | |
branches: | |
- main | |
env: | |
TEST_HOST: http://localhost | |
CI_DB_PORT: 5433 | |
CI_PORT: 8081 | |
DB_USERNAME: test-user | |
DB_PASSWORD: test-pw | |
DB_NAME: wxyc_db | |
AUTH_BYPASS: true | |
jobs: | |
Unit-Integration-Tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Set Up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Install Dependencies | |
run: npm install --only=dev | |
- name: Set Up Test Env | |
run: touch .env && npm run ci:env | |
- name: Run Tests | |
run: npm run ci:test | |
- name: Clean Up Env | |
if: always() | |
run: npm run ci:clean |