Skip to content

fixup! ci: add test workflow #5

fixup! ci: add test workflow

fixup! ci: add test workflow #5

Workflow file for this run

name: Tests
on:
- push
- pull_request
jobs:
api-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Run tests
run: NODE_ENV=test HOST=localhost LOG_LEVEL=info APP_KEY=applicationtestappkey SESSION_DRIVER=memory pnpm run test