Skip to content

Email templates with logo #4577

Email templates with logo

Email templates with logo #4577

Workflow file for this run

name: "Run setup tests"
on:
push:
branches:
- main
- dev
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/dev' }}
env:
SHELL: /usr/bin/bash
jobs:
setup-tests:
runs-on: ubicloud-standard-8
steps:
- uses: actions/checkout@v3
- name: Setup Node.js v20
uses: actions/setup-node@v3
with:
node-version: 20
- name: Setup pnpm
uses: pnpm/action-setup@v3
with:
version: 9.1.2
- name: Install packages
run: pnpm install
- run: pnpm run build:packages
- run: pnpm run codegen
- run: pnpm run start-deps
- uses: JarvusInnovations/background-action@v1.0.7
with:
run: pnpm run dev &
wait-on: |
http://localhost:8102
tail: true
wait-for: 120s
log-output-if: true
- run: pnpm run test --reporter=verbose