Skip to content

Docs publishing workflow #11

Docs publishing workflow

Docs publishing workflow #11

Workflow file for this run

name: Testing
on:
push:
branches:
- "**"
tags-ignore:
- "*"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: "24"
cache: pnpm
- run: pnpm install --frozen-lockfile
- name: Build packages
run: |
pnpm --filter @sendlit/api-contract build
pnpm --filter @sendlit/email-editor build
pnpm --filter @sendlit/email-blocks build
- name: Running tests
run: |
pnpm test
working-directory: ./