2023-12-06 11:03:05 +03:00
name : Build & Test
on :
push :
branches :
- canary
2024-02-23 12:17:13 +03:00
- beta
- stable
2023-12-06 11:03:05 +03:00
- v[0-9]+.[0-9]+.x-staging
- v[0-9]+.[0-9]+.x
paths-ignore :
- README.md
pull_request :
env :
DEBUG : napi:*
BUILD_TYPE : canary
APP_NAME : affine
AFFINE_ENV : dev
COVERAGE : true
MACOSX_DEPLOYMENT_TARGET : '10.13'
NX_CLOUD_ACCESS_TOKEN : ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
PLAYWRIGHT_BROWSERS_PATH : ${{ github.workspace }}/node_modules/.cache/ms-playwright
2024-02-02 11:32:06 +03:00
DEPLOYMENT_TYPE : affine
2023-12-06 11:03:05 +03:00
concurrency :
group : ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress : true
jobs :
analyze :
name : Analyze
runs-on : ubuntu-latest
permissions :
actions : read
contents : read
security-events : write
strategy :
fail-fast : false
matrix :
language : [ 'javascript' , 'typescript' ]
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
steps :
- name : Checkout repository
uses : actions/checkout@v4
# Initializes the CodeQL tools for scanning.
- name : Initialize CodeQL
2023-12-14 16:52:18 +03:00
uses : github/codeql-action/init@v3
2023-12-06 11:03:05 +03:00
with :
languages : ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name : Autobuild
2023-12-14 16:52:18 +03:00
uses : github/codeql-action/autobuild@v3
2023-12-06 11:03:05 +03:00
# ℹ ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
# - run: |
# echo "Run, Build Application using script"
# ./location_of_script_within_repo/buildscript.sh
- name : Perform CodeQL Analysis
2023-12-14 16:52:18 +03:00
uses : github/codeql-action/analyze@v3
2023-12-06 11:03:05 +03:00
lint :
name : Lint
runs-on : ubuntu-latest
steps :
- uses : actions/checkout@v4
- name : Run oxlint
# oxlint is fast, so wrong code will fail quickly
2023-12-18 15:10:01 +03:00
run : yarn dlx $(node -e "console.log(require('./package.json').scripts['lint:ox'].replace('oxlint', 'oxlint@' + require('./package.json').devDependencies.oxlint))")
2023-12-06 11:03:05 +03:00
- name : Setup Node.js
uses : ./.github/actions/setup-node
with :
electron-install : false
full-cache : true
- name : Run i18n codegen
2024-10-10 12:03:06 +03:00
run : yarn workspace @affine/i18n build
2023-12-06 11:03:05 +03:00
- name : Run ESLint
run : yarn lint:eslint --max-warnings=0
- name : Run Prettier
# Set nmMode in `actions/setup-node` will modify the .yarnrc.yml
run : |
git checkout .yarnrc.yml
yarn lint:prettier
2024-01-23 15:41:50 +03:00
- name : Yarn Dedupe
run : yarn dedupe --check
2023-12-06 11:03:05 +03:00
- name : Run Type Check
run : yarn typecheck
check-yarn-binary :
name : Check yarn binary
runs-on : ubuntu-latest
steps :
- uses : actions/checkout@v4
- name : Run check
run : |
yarn set version $(node -e "console.log(require('./package.json').packageManager.split('@')[1])")
git diff --exit-code
e2e-test :
name : E2E Test
runs-on : ubuntu-latest
env :
2024-09-10 07:03:58 +03:00
DISTRIBUTION : web
2024-03-03 15:00:10 +03:00
IN_CI_TEST : true
2023-12-06 11:03:05 +03:00
strategy :
fail-fast : false
matrix :
shard : [ 1 , 2 , 3 , 4 , 5 ]
steps :
- uses : actions/checkout@v4
- name : Setup Node.js
uses : ./.github/actions/setup-node
with :
playwright-install : true
electron-install : false
full-cache : true
- name : Run playwright tests
run : yarn workspace @affine-test/affine-local e2e --forbid-only --shard=${{ matrix.shard }}/${{ strategy.job-total }}
- name : Upload test results
if : ${{ failure() }}
2023-12-26 15:40:10 +03:00
uses : actions/upload-artifact@v4
2023-12-06 11:03:05 +03:00
with :
name : test-results-e2e-${{ matrix.shard }}
path : ./test-results
if-no-files-found : ignore
2024-09-02 13:20:23 +03:00
e2e-mobile-test :
name : E2E Mobile Test
runs-on : ubuntu-latest
env :
DISTRIBUTION : mobile
IN_CI_TEST : true
strategy :
fail-fast : false
matrix :
shard : [ 1 , 2 , 3 , 4 , 5 ]
steps :
- uses : actions/checkout@v4
- name : Setup Node.js
uses : ./.github/actions/setup-node
with :
playwright-install : true
electron-install : false
full-cache : true
- name : Run playwright tests
run : yarn workspace @affine-test/affine-mobile e2e --forbid-only --shard=${{ matrix.shard }}/${{ strategy.job-total }}
- name : Upload test results
if : ${{ failure() }}
uses : actions/upload-artifact@v4
with :
name : test-results-e2e-mobile-${{ matrix.shard }}
path : ./test-results
if-no-files-found : ignore
2023-12-06 11:03:05 +03:00
e2e-migration-test :
name : E2E Migration Test
runs-on : ubuntu-latest
env :
2024-09-10 07:03:58 +03:00
DISTRIBUTION : web
2023-12-06 11:03:05 +03:00
steps :
- uses : actions/checkout@v4
- name : Setup Node.js
uses : ./.github/actions/setup-node
with :
playwright-install : true
electron-install : false
full-cache : true
- name : Run playwright tests
run : yarn workspace @affine-test/affine-migration e2e --forbid-only
- name : Upload test results
if : ${{ failure() }}
2023-12-26 15:40:10 +03:00
uses : actions/upload-artifact@v4
2023-12-06 11:03:05 +03:00
with :
name : test-results-e2e-migration
2024-06-20 07:24:12 +03:00
path : ./test-results
2023-12-06 11:03:05 +03:00
if-no-files-found : ignore
unit-test :
name : Unit Test
runs-on : ubuntu-latest
needs :
- build-native
env :
2024-09-10 07:03:58 +03:00
DISTRIBUTION : web
2023-12-06 11:03:05 +03:00
steps :
- uses : actions/checkout@v4
- name : Setup Node.js
uses : ./.github/actions/setup-node
with :
2024-08-19 17:24:34 +03:00
electron-install : true
2023-12-06 11:03:05 +03:00
full-cache : true
- name : Download affine.linux-x64-gnu.node
2023-12-26 15:40:10 +03:00
uses : actions/download-artifact@v4
2023-12-06 11:03:05 +03:00
with :
name : affine.linux-x64-gnu.node
path : ./packages/frontend/native
- name : Unit Test
run : yarn nx test:coverage @affine/monorepo
- name : Upload unit test coverage results
2024-02-01 05:17:20 +03:00
uses : codecov/codecov-action@v4
2023-12-06 11:03:05 +03:00
with :
token : ${{ secrets.CODECOV_TOKEN }}
files : ./.coverage/store/lcov.info
flags : unittest
name : affine
fail_ci_if_error : false
build-native :
name : Build AFFiNE native (${{ matrix.spec.target }})
runs-on : ${{ matrix.spec.os }}
env :
CARGO_PROFILE_RELEASE_DEBUG : '1'
strategy :
fail-fast : false
matrix :
spec :
- { os: ubuntu-latest, target : x86_64-unknown-linux-gnu }
- { os: windows-latest, target : x86_64-pc-windows-msvc }
2024-02-01 12:03:07 +03:00
- { os: macos-14, target : x86_64-apple-darwin }
- { os: macos-14, target : aarch64-apple-darwin }
2023-12-06 11:03:05 +03:00
steps :
- uses : actions/checkout@v4
- name : Setup Node.js
uses : ./.github/actions/setup-node
with :
extra-flags : workspaces focus @affine/native
electron-install : false
- name : Setup filename
id : filename
shell : bash
run : |
export PLATFORM_ARCH_ABI=$(node -e "console.log(require('@napi-rs/cli').parseTriple('${{ matrix.spec.target }}').platformArchABI)")
echo "filename=affine.$PLATFORM_ARCH_ABI.node" >> "$GITHUB_OUTPUT"
- name : Build AFFiNE native
uses : ./.github/actions/build-rust
with :
target : ${{ matrix.spec.target }}
package : '@affine/native'
nx_token : ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
- name : Upload ${{ steps.filename.outputs.filename }}
2023-12-26 15:40:10 +03:00
uses : actions/upload-artifact@v4
2023-12-06 11:03:05 +03:00
with :
name : ${{ steps.filename.outputs.filename }}
path : ./packages/frontend/native/${{ steps.filename.outputs.filename }}
if-no-files-found : error
2024-04-29 05:14:20 +03:00
build-server-native :
name : Build Server native
2023-12-06 11:03:05 +03:00
runs-on : ubuntu-latest
env :
CARGO_PROFILE_RELEASE_DEBUG : '1'
steps :
- uses : actions/checkout@v4
- name : Setup Node.js
uses : ./.github/actions/setup-node
with :
2024-04-29 05:14:20 +03:00
extra-flags : workspaces focus @affine/server-native
2023-12-06 11:03:05 +03:00
electron-install : false
- name : Build Rust
uses : ./.github/actions/build-rust
with :
target : 'x86_64-unknown-linux-gnu'
2024-04-29 05:14:20 +03:00
package : '@affine/server-native'
2023-12-06 11:03:05 +03:00
nx_token : ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
2024-04-29 05:14:20 +03:00
- name : Upload server-native.node
2023-12-26 15:40:10 +03:00
uses : actions/upload-artifact@v4
2023-12-06 11:03:05 +03:00
with :
2024-04-29 05:14:20 +03:00
name : server-native.node
path : ./packages/backend/native/server-native.node
2023-12-06 11:03:05 +03:00
if-no-files-found : error
2024-09-18 08:09:42 +03:00
build-electron-renderer :
name : Build @affine/electron renderer
2023-12-06 11:03:05 +03:00
runs-on : ubuntu-latest
steps :
- uses : actions/checkout@v4
- name : Setup Node.js
uses : ./.github/actions/setup-node
with :
electron-install : false
full-cache : true
2024-09-18 08:09:42 +03:00
- name : Build Electron renderer
2023-12-06 11:03:05 +03:00
# always skip cache because its fast, and cache configuration is always changing
2024-09-18 08:09:42 +03:00
run : yarn build
2024-03-28 13:24:25 +03:00
env :
2024-09-10 07:03:58 +03:00
DISTRIBUTION : desktop
2024-03-19 10:48:56 +03:00
- name : zip web
2024-09-12 10:42:57 +03:00
run : tar -czf dist.tar.gz --directory=packages/frontend/apps/electron/renderer/dist .
2024-03-19 10:48:56 +03:00
- name : Upload web artifact
2023-12-26 15:40:10 +03:00
uses : actions/upload-artifact@v4
2023-12-06 11:03:05 +03:00
with :
2024-03-19 10:48:56 +03:00
name : web
2023-12-06 11:03:05 +03:00
path : dist.tar.gz
if-no-files-found : error
server-test :
name : Server Test
runs-on : ubuntu-latest
2024-04-29 05:14:20 +03:00
needs : build-server-native
2023-12-06 11:03:05 +03:00
env :
2024-02-02 11:32:06 +03:00
NODE_ENV : test
2024-09-10 07:03:58 +03:00
DISTRIBUTION : web
2023-12-06 11:03:05 +03:00
services :
postgres :
image : postgres
env :
POSTGRES_PASSWORD : affine
options : >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports :
- 5432 : 5432
mailer :
image : mailhog/mailhog
ports :
- 1025 : 1025
- 8025 : 8025
steps :
- uses : actions/checkout@v4
- name : Setup Node.js
uses : ./.github/actions/setup-node
with :
electron-install : false
full-cache : true
2024-04-29 05:14:20 +03:00
- name : Download server-native.node
2024-01-03 13:56:57 +03:00
uses : actions/download-artifact@v4
with :
2024-04-29 05:14:20 +03:00
name : server-native.node
2024-01-03 13:56:57 +03:00
path : ./packages/backend/server
2023-12-06 11:03:05 +03:00
- name : Initialize database
run : |
psql -h localhost -U postgres -c "CREATE DATABASE affine;"
psql -h localhost -U postgres -c "CREATE USER affine WITH PASSWORD 'affine';"
psql -h localhost -U postgres -c "ALTER USER affine WITH SUPERUSER;"
env :
PGPASSWORD : affine
2024-03-12 13:00:09 +03:00
- name : Run init-db script
2023-12-06 11:03:05 +03:00
run : |
yarn workspace @affine/server exec prisma generate
yarn workspace @affine/server exec prisma db push
2023-12-14 12:50:36 +03:00
yarn workspace @affine/server data-migration run
2023-12-06 11:03:05 +03:00
env :
DATABASE_URL : postgresql://affine:affine@localhost:5432/affine
- name : Run server tests
run : yarn workspace @affine/server test:coverage
env :
CARGO_TARGET_DIR : '${{ github.workspace }}/target'
DATABASE_URL : postgresql://affine:affine@localhost:5432/affine
2024-05-23 19:35:30 +03:00
COPILOT_OPENAI_API_KEY : 'use_fake_openai_api_key'
2023-12-06 11:03:05 +03:00
- name : Upload server test coverage results
2024-02-01 05:17:20 +03:00
uses : codecov/codecov-action@v4
2023-12-06 11:03:05 +03:00
with :
token : ${{ secrets.CODECOV_TOKEN }}
files : ./packages/backend/server/.coverage/lcov.info
flags : server-test
name : affine
fail_ci_if_error : false
server-e2e-test :
name : ${{ matrix.tests.name }}
runs-on : ubuntu-latest
env :
2024-09-10 07:03:58 +03:00
DISTRIBUTION : web
2023-12-06 11:03:05 +03:00
DATABASE_URL : postgresql://affine:affine@localhost:5432/affine
2024-03-03 15:00:10 +03:00
IN_CI_TEST : true
2023-12-06 11:03:05 +03:00
strategy :
fail-fast : false
matrix :
tests :
- name : 'Server E2E Test 1/3'
script : yarn workspace @affine-test/affine-cloud e2e --forbid-only --shard=1/3
- name : 'Server E2E Test 2/3'
script : yarn workspace @affine-test/affine-cloud e2e --forbid-only --shard=2/3
- name : 'Server E2E Test 3/3'
script : yarn workspace @affine-test/affine-cloud e2e --forbid-only --shard=3/3
- name : 'Server Desktop E2E Test'
script : |
yarn workspace @affine/electron build:dev
2024-10-14 13:20:17 +03:00
# Workaround for Electron apps failing to initialize on Ubuntu 24.04 due to AppArmor restrictions
# Disables unprivileged user namespaces restriction to allow Electron apps to run
# Reference: https://github.com/electron/electron/issues/42510
sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0
2023-12-06 11:03:05 +03:00
xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- yarn workspace @affine-test/affine-desktop-cloud e2e
needs :
2024-04-29 05:14:20 +03:00
- build-server-native
2023-12-06 11:03:05 +03:00
- build-native
services :
postgres :
image : postgres
env :
POSTGRES_PASSWORD : affine
options : >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports :
- 5432 : 5432
mailer :
image : mailhog/mailhog
ports :
- 1025 : 1025
- 8025 : 8025
steps :
- uses : actions/checkout@v4
- name : Setup Node.js
uses : ./.github/actions/setup-node
with :
playwright-install : true
hard-link-nm : false
2024-04-29 05:14:20 +03:00
- name : Download server-native.node
2024-01-03 13:56:57 +03:00
uses : actions/download-artifact@v4
with :
2024-04-29 05:14:20 +03:00
name : server-native.node
2024-01-03 13:56:57 +03:00
path : ./packages/backend/server
- name : Download affine.linux-x64-gnu.node
uses : actions/download-artifact@v4
with :
name : affine.linux-x64-gnu.node
path : ./packages/frontend/native
2023-12-06 11:03:05 +03:00
- name : Initialize database
run : |
psql -h localhost -U postgres -c "CREATE DATABASE affine;"
psql -h localhost -U postgres -c "CREATE USER affine WITH PASSWORD 'affine';"
psql -h localhost -U postgres -c "ALTER USER affine WITH SUPERUSER;"
env :
PGPASSWORD : affine
2024-03-12 13:00:09 +03:00
- name : Run init-db script
2023-12-06 11:03:05 +03:00
run : |
yarn workspace @affine/server exec prisma generate
yarn workspace @affine/server exec prisma db push
2023-12-14 12:50:36 +03:00
yarn workspace @affine/server data-migration run
2023-12-06 11:03:05 +03:00
- name : ${{ matrix.tests.name }}
run : |
${{ matrix.tests.script }}
env :
DEV_SERVER_URL : http://localhost:8080
2024-07-23 18:10:08 +03:00
COPILOT_OPENAI_API_KEY : 1
COPILOT_FAL_API_KEY : 1
2023-12-06 11:03:05 +03:00
- name : Upload test results
if : ${{ failure() }}
2023-12-26 15:40:10 +03:00
uses : actions/upload-artifact@v4
2023-12-06 11:03:05 +03:00
with :
name : test-results-e2e-server
2024-06-20 07:24:12 +03:00
path : ./test-results
2023-12-06 11:03:05 +03:00
if-no-files-found : ignore
desktop-test :
name : Desktop Test (${{ matrix.spec.os }}, ${{ matrix.spec.platform }}, ${{ matrix.spec.arch }}, ${{ matrix.spec.target }}, ${{ matrix.spec.test }})
runs-on : ${{ matrix.spec.os }}
strategy :
fail-fast : false
matrix :
spec :
- {
2024-02-01 12:03:07 +03:00
os : macos-14,
2023-12-06 11:03:05 +03:00
platform : macos,
arch : x64,
target : x86_64-apple-darwin,
2024-02-01 12:03:07 +03:00
test : false ,
2023-12-06 11:03:05 +03:00
}
- {
2024-02-01 12:03:07 +03:00
os : macos-14,
2023-12-06 11:03:05 +03:00
platform : macos,
arch : arm64,
target : aarch64-apple-darwin,
2024-02-01 12:03:07 +03:00
test : true ,
2023-12-06 11:03:05 +03:00
}
- {
os : ubuntu-latest,
platform : linux,
arch : x64,
target : x86_64-unknown-linux-gnu,
test : true ,
}
- {
os : windows-latest,
platform : windows,
arch : x64,
target : x86_64-pc-windows-msvc,
test : true ,
}
needs :
2024-09-18 08:09:42 +03:00
- build-electron-renderer
2023-12-06 11:03:05 +03:00
- build-native
steps :
- uses : actions/checkout@v4
- name : Setup Node.js
uses : ./.github/actions/setup-node
timeout-minutes : 10
with :
extra-flags : workspaces focus @affine/electron @affine/monorepo @affine-test/affine-desktop
playwright-install : true
hard-link-nm : false
enableScripts : false
- name : Setup filename
id : filename
shell : bash
run : |
export PLATFORM_ARCH_ABI=$(node -e "console.log(require('@napi-rs/cli').parseTriple('${{ matrix.spec.target }}').platformArchABI)")
echo "filename=affine.$PLATFORM_ARCH_ABI.node" >> "$GITHUB_OUTPUT"
- name : Download ${{ steps.filename.outputs.filename }}
2023-12-26 15:40:10 +03:00
uses : actions/download-artifact@v4
2023-12-06 11:03:05 +03:00
with :
name : ${{ steps.filename.outputs.filename }}
path : ./packages/frontend/native
- name : Run unit tests
if : ${{ matrix.spec.test }}
shell : bash
2024-01-05 10:23:22 +03:00
run : yarn workspace @affine/electron vitest
2023-12-06 11:03:05 +03:00
2024-03-19 10:48:56 +03:00
- name : Download web artifact
uses : ./.github/actions/download-web
2023-12-06 11:03:05 +03:00
with :
2024-09-12 10:42:57 +03:00
path : packages/frontend/apps/electron/resources/web-static
2023-12-06 11:03:05 +03:00
- name : Build Desktop Layers
run : yarn workspace @affine/electron build
- name : Run desktop tests
2024-02-01 12:03:07 +03:00
if : ${{ matrix.spec.os == 'ubuntu-latest' }}
2024-10-14 13:20:17 +03:00
run : |
# Workaround for Electron apps failing to initialize on Ubuntu 24.04 due to AppArmor restrictions
# Disables unprivileged user namespaces restriction to allow Electron apps to run
# Reference: https://github.com/electron/electron/issues/42510
sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0
xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- yarn workspace @affine-test/affine-desktop e2e
2023-12-06 11:03:05 +03:00
- name : Run desktop tests
if : ${{ matrix.spec.test && matrix.spec.os != 'ubuntu-latest' }}
run : yarn workspace @affine-test/affine-desktop e2e
2024-10-10 12:51:32 +03:00
- name : Make bundle (macOS)
2024-02-23 07:36:14 +03:00
if : ${{ matrix.spec.target == 'aarch64-apple-darwin' }}
2023-12-06 11:03:05 +03:00
env :
SKIP_BUNDLE : true
SKIP_WEB_BUILD : true
HOIST_NODE_MODULES : 1
run : yarn workspace @affine/electron package --platform=darwin --arch=arm64
2024-10-10 12:51:32 +03:00
- name : Make Bundle (Linux)
run : |
sudo add-apt-repository universe
sudo apt install -y libfuse2 elfutils flatpak flatpak-builder
flatpak remote-add --user --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak update
# some flatpak deps need git protocol.file.allow
git config --global protocol.file.allow always
yarn workspace @affine/electron make --platform=linux --arch=x64
2024-02-23 07:36:14 +03:00
if : ${{ matrix.spec.target == 'x86_64-unknown-linux-gnu' }}
env :
SKIP_WEB_BUILD : 1
HOIST_NODE_MODULES : 1
2023-12-06 11:03:05 +03:00
- name : Output check
2024-02-01 12:03:07 +03:00
if : ${{ matrix.spec.os == 'macos-14' && matrix.spec.arch == 'arm64' }}
2023-12-06 11:03:05 +03:00
run : |
2023-12-07 12:13:00 +03:00
yarn workspace @affine/electron exec node --loader ts-node/esm/transpile-only ./scripts/macos-arm64-output-check.ts
2023-12-06 11:03:05 +03:00
- name : Upload test results
if : ${{ failure() }}
2023-12-26 15:40:10 +03:00
uses : actions/upload-artifact@v4
2023-12-06 11:03:05 +03:00
with :
name : test-results-e2e-${{ matrix.spec.os }}-${{ matrix.spec.arch }}
path : ./test-results
if-no-files-found : ignore
2024-02-01 12:03:07 +03:00
test-done :
needs :
- analyze
- lint
- check-yarn-binary
- e2e-test
2024-09-02 17:10:36 +03:00
- e2e-mobile-test
2024-02-01 12:03:07 +03:00
- e2e-migration-test
- unit-test
2024-09-13 08:21:56 +03:00
- build-native
- build-server-native
2024-02-01 12:03:07 +03:00
- server-test
- server-e2e-test
- desktop-test
2024-02-02 08:21:59 +03:00
if : always()
2024-02-01 12:03:07 +03:00
runs-on : ubuntu-latest
2024-02-02 08:21:59 +03:00
name : 3 , 2 , 1 Launch
2024-02-01 12:03:07 +03:00
steps :
2024-02-02 08:21:59 +03:00
- run : exit 1
# Thank you, next https://github.com/vercel/next.js/blob/canary/.github/workflows/build_and_test.yml#L379
if : ${{ always() && (contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')) }}