Skip to content

feat: Add domainLevels option and remove resend dependency #9

feat: Add domainLevels option and remove resend dependency

feat: Add domainLevels option and remove resend dependency #9

Workflow file for this run

name: Test
on:
workflow_dispatch:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 24.x
uses: actions/setup-node@v4
with:
node-version: 24.x
cache: 'npm'
- run: npm ci
- run: npx prettier --check .
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
# Install dependencies
- run: npm ci
# Run tests
- run: npm test
env:
API_KEY: ${{ secrets.API_KEY }}