Skip to content

Add allowedServerHooks option #24

Add allowedServerHooks option

Add allowedServerHooks option #24

Workflow file for this run

name: Validate
on: # Rebuild any PRs and main branch changes
push:
branches:
- main
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
env:
CI: true
steps:
- uses: pnpm/[email protected]
- name: Checkout Repo
uses: actions/checkout@main
- name: Setup Node.js
uses: actions/setup-node@main
with:
node-version-file: ".nvmrc"
cache: "pnpm"
- name: Install Dependencies
run: pnpm i
- name: Build
run: pnpm build
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test