Skip to content

feat: add support for email triggers #85

feat: add support for email triggers

feat: add support for email triggers #85

Workflow file for this run

name: Pull Request
on: pull_request
jobs:
check:
name: 'Checks'
timeout-minutes: 30
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-checks
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: 'Install NPM Dependencies'
run: 'pnpm install --frozen-lockfile --child-concurrency=10'
- name: 'Run Tests'
run: 'pnpm run ci'