build(deps-dev): bump ts-jest from 29.1.4 to 29.2.2 #500
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: tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
test_pull_request: | |
runs-on: ubuntu-latest | |
env: | |
APP_ENV: test | |
APP_PORT: 3000 | |
DB_HOST: localhost | |
DB_PORT: 5432 | |
DB_NAME: example_db | |
DB_USER: root | |
DB_PASS: example | |
JWT_ACCESS_TOKEN_EXP_IN_SEC: 3600 | |
JWT_REFRESH_TOKEN_EXP_IN_SEC: 7200 | |
JWT_PUBLIC_KEY_BASE64: ${{ secrets.JWT_PUBLIC_KEY_BASE64 }} | |
JWT_PRIVATE_KEY_BASE64: ${{ secrets.JWT_PRIVATE_KEY_BASE64 }} | |
DEFAULT_ADMIN_USER_PASSWORD: example_admin_pass | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20.14.0 | |
- name: Cache node modules | |
uses: actions/cache@v3 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- run: npm ci | |
- name: Run unit tests | |
run: npm test | |
- name: Build the docker-compose stack | |
run: docker-compose -f docker-compose.yml up -d pgsqldb | |
- name: Check running containers | |
run: docker ps -a | |
- name: Run e2e tests | |
run: sleep 5 && npm run test:e2e |