Skip to content

Rate notifications, postgresql in a docker container #24

Rate notifications, postgresql in a docker container

Rate notifications, postgresql in a docker container #24

Workflow file for this run

name: Run tests
on:
pull_request:
types: [opened, synchronize]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install tsx
- name: Run tests
run: npx tsx --test --test-reporter spec '**/tests/**/*.ts'