In this PR: - Migrate twenty-ui to ES2020 (removing undesired type errors during build) - Make CI cache work again between `sb-build` and `sb-test` steps (Note: also fixing a minor bug on Notes) Total CI time: ~8min <img width="1088" height="531" alt="image" src="https://github.com/user-attachments/assets/0bd0a99a-c69e-491d-91b2-9ddf6622464a" /> Both node_modules and sb-build caches are being hit now <img width="1154" height="722" alt="image" src="https://github.com/user-attachments/assets/a5addcee-51d2-4f51-9ff6-d02cd25da49a" />
60 lines
1.6 KiB
YAML
60 lines
1.6 KiB
YAML
name: CI Emails
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
changed-files-check:
|
|
uses: ./.github/workflows/changed-files.yaml
|
|
with:
|
|
files: |
|
|
package.json
|
|
packages/twenty-emails/**
|
|
emails-test:
|
|
needs: changed-files-check
|
|
if: needs.changed-files-check.outputs.any_changed == 'true'
|
|
timeout-minutes: 10
|
|
runs-on: depot-ubuntu-24.04-8
|
|
steps:
|
|
- name: Fetch custom Github Actions and base branch history
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Install dependencies
|
|
uses: ./.github/workflows/actions/yarn-install
|
|
- name: Build twenty-emails
|
|
run: npx nx build twenty-emails
|
|
- name: Run email tests
|
|
run: |
|
|
# Start the email server in the background
|
|
npx nx run twenty-emails:start &
|
|
SERVER_PID=$!
|
|
|
|
# Wait for server to start
|
|
sleep 20
|
|
|
|
# Check if server is running
|
|
if ! curl -s http://localhost:4001/preview/test.email > /dev/null; then
|
|
echo "Email server failed to start"
|
|
kill $SERVER_PID
|
|
exit 1
|
|
fi
|
|
|
|
# Kill the server
|
|
kill $SERVER_PID
|
|
ci-emails-status-check:
|
|
if: always() && !cancelled()
|
|
timeout-minutes: 5
|
|
runs-on: depot-ubuntu-24.04-8
|
|
needs: [changed-files-check, emails-test]
|
|
steps:
|
|
- name: Fail job if any needs failed
|
|
if: contains(needs.*.result, 'failure')
|
|
run: exit 1 |