Skip to content

build(deps-dev): bump prettier from 2.8.8 to 3.0.0 #171

build(deps-dev): bump prettier from 2.8.8 to 3.0.0

build(deps-dev): bump prettier from 2.8.8 to 3.0.0 #171

Workflow file for this run

name: "Tests the App"
env:
DB_PROVIDER: ${{ secrets.DB_PROVIDER }}
DB_URL: ${{ secrets.DB_URL }}
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run_test:
name: "Run tests"
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
node-version: [16.x, 18.x, 20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases
steps:
- uses: actions/checkout@v3
- name: Install modules
run: npm ci
- name: Migrate the database
run: npm run db:migrate
- name: Seed the data
run: npm run db:seed
- name: Run unit tests
run: npm run test
- name: Run e2e tests
run: npm run test:e2e
- name: Build
run: npm run build