Skip to content

Webhook authentication with X-Secrets #1

Webhook authentication with X-Secrets

Webhook authentication with X-Secrets #1

Workflow file for this run

name: Build & Test
on:
pull_request:
branches: [ '*' ]
workflow_call:
workflow_dispatch:
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: Install dependencies
run: npm install
- name: Build Typescript app
run: npm run build
- name: Build database
run: npx prisma migrate deploy
- name: Test Docker build
run: docker compose build
# TODO: Add tests here. Requires a mock database.