Skip to content

Fixed

Fixed #43

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- master
push:
branches:
- test
jobs:
units:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 21.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: cp .env.example .env
- run: npm run build
- run: npx concurrently --kill-others "npm run start" "npx wait-on -t 5s http-get://localhost:3000/docs"