2021-09-08 10:29:37 +08:00
|
|
|
name: Main
|
2021-07-28 01:13:51 +08:00
|
|
|
|
|
|
|
on:
|
2022-06-22 18:55:58 +08:00
|
|
|
push:
|
2022-07-01 20:33:08 +08:00
|
|
|
branches:
|
|
|
|
- master
|
2023-10-20 10:46:09 +08:00
|
|
|
- "push-action/**"
|
2022-06-27 16:38:39 +08:00
|
|
|
pull_request:
|
2021-07-28 01:13:51 +08:00
|
|
|
|
2022-06-22 10:11:54 +08:00
|
|
|
concurrency:
|
2023-01-19 11:22:17 +08:00
|
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
2022-06-17 23:58:29 +08:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2021-07-28 01:13:51 +08:00
|
|
|
jobs:
|
2022-05-22 16:12:29 +08:00
|
|
|
main-build:
|
2021-07-28 01:13:51 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-09-05 16:13:24 +08:00
|
|
|
- uses: actions/checkout@v4
|
2021-07-28 01:13:51 +08:00
|
|
|
|
2021-08-20 18:16:00 +08:00
|
|
|
- name: Setup Node and pnpm
|
2023-12-26 12:35:11 +08:00
|
|
|
uses: silverhand-io/actions-node-pnpm-run-steps@v4
|
2021-07-28 01:13:51 +08:00
|
|
|
|
2021-09-08 10:29:37 +08:00
|
|
|
- name: Build
|
2022-05-18 10:58:01 +08:00
|
|
|
run: pnpm ci:build
|
2021-09-08 10:29:37 +08:00
|
|
|
|
2022-05-22 16:12:29 +08:00
|
|
|
main-lint:
|
2022-12-12 13:43:23 +08:00
|
|
|
runs-on: ubuntu-latest
|
2022-05-22 16:12:29 +08:00
|
|
|
|
|
|
|
steps:
|
2023-09-05 16:13:24 +08:00
|
|
|
- uses: actions/checkout@v4
|
2022-05-22 16:12:29 +08:00
|
|
|
|
|
|
|
- name: Setup Node and pnpm
|
2023-12-26 12:35:11 +08:00
|
|
|
uses: silverhand-io/actions-node-pnpm-run-steps@v4
|
2022-05-22 16:12:29 +08:00
|
|
|
|
|
|
|
- name: Prepack
|
|
|
|
run: pnpm prepack
|
|
|
|
|
2021-07-28 01:13:51 +08:00
|
|
|
- name: Lint
|
2022-05-18 10:58:01 +08:00
|
|
|
run: pnpm ci:lint
|
2021-07-28 01:13:51 +08:00
|
|
|
|
2022-05-17 13:20:17 +00:00
|
|
|
- name: Stylelint
|
2022-05-18 10:58:01 +08:00
|
|
|
run: pnpm ci:stylelint
|
2022-02-16 15:04:34 +08:00
|
|
|
|
2022-05-22 16:12:29 +08:00
|
|
|
main-test:
|
2023-11-08 16:55:45 +08:00
|
|
|
runs-on: buildjet-4vcpu-ubuntu-2204
|
2022-05-22 16:12:29 +08:00
|
|
|
|
|
|
|
steps:
|
2023-09-05 16:13:24 +08:00
|
|
|
- uses: actions/checkout@v4
|
2022-05-22 16:12:29 +08:00
|
|
|
|
|
|
|
- name: Setup Node and pnpm
|
2023-12-26 12:35:11 +08:00
|
|
|
uses: silverhand-io/actions-node-pnpm-run-steps@v4
|
2022-05-22 16:12:29 +08:00
|
|
|
|
2022-12-12 21:52:17 +08:00
|
|
|
- name: Build for test
|
|
|
|
run: pnpm -r build:test
|
2022-05-22 16:12:29 +08:00
|
|
|
|
2021-09-08 10:29:37 +08:00
|
|
|
- name: Test
|
2022-05-18 10:58:01 +08:00
|
|
|
run: pnpm ci:test
|
2022-01-10 10:04:00 +08:00
|
|
|
|
2022-06-22 10:11:54 +08:00
|
|
|
- name: Codecov core
|
2024-02-01 12:04:42 +08:00
|
|
|
uses: codecov/codecov-action@v4
|
2022-03-01 11:05:25 +08:00
|
|
|
with:
|
|
|
|
flags: core
|
|
|
|
directory: ./packages/core
|
2022-06-22 10:11:54 +08:00
|
|
|
|
|
|
|
- name: Codecov ui
|
2024-02-01 12:04:42 +08:00
|
|
|
uses: codecov/codecov-action@v4
|
2022-06-22 10:11:54 +08:00
|
|
|
with:
|
|
|
|
flags: ui
|
|
|
|
directory: ./packages/ui
|
2022-10-19 11:35:39 +08:00
|
|
|
|
|
|
|
main-dockerize:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-09-05 16:13:24 +08:00
|
|
|
- uses: actions/checkout@v4
|
2022-10-19 11:35:39 +08:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
2023-09-12 09:23:34 +00:00
|
|
|
uses: docker/setup-buildx-action@v3
|
2022-10-19 11:35:39 +08:00
|
|
|
|
|
|
|
- name: Build
|
2023-09-12 17:03:00 +08:00
|
|
|
uses: docker/build-push-action@v5
|
2022-10-19 11:35:39 +08:00
|
|
|
with:
|
|
|
|
context: .
|
2023-03-15 17:58:07 +08:00
|
|
|
build-args: | # Test cloud build
|
|
|
|
additional_connector_args=--cloud
|
2023-02-21 10:44:35 +08:00
|
|
|
|
2023-01-17 17:52:54 +08:00
|
|
|
main-alteration:
|
2022-12-30 10:50:56 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-01-17 17:52:54 +08:00
|
|
|
# ** Checkout fresh and alteration ref **
|
2023-09-05 16:13:24 +08:00
|
|
|
- uses: actions/checkout@v4
|
2022-12-30 10:50:56 +08:00
|
|
|
with:
|
2023-01-18 13:23:24 +08:00
|
|
|
fetch-depth: 0
|
2023-01-17 17:52:54 +08:00
|
|
|
path: ./fresh
|
|
|
|
|
2023-01-18 13:23:24 +08:00
|
|
|
# Fetch the current version by finding the latest tag starts with "v", e.g. "v1.0.0-beta.19"
|
|
|
|
- id: version
|
|
|
|
working-directory: ./fresh
|
2023-10-20 10:46:09 +08:00
|
|
|
run: echo "current=$(git describe --match "@logto/core@*" --abbrev=0)" >> $GITHUB_OUTPUT
|
2023-01-18 13:23:24 +08:00
|
|
|
|
2023-09-05 16:13:24 +08:00
|
|
|
- uses: actions/checkout@v4
|
2023-01-17 17:52:54 +08:00
|
|
|
with:
|
2023-01-18 13:23:24 +08:00
|
|
|
ref: ${{ steps.version.outputs.current }}
|
2023-01-17 17:52:54 +08:00
|
|
|
path: ./alteration
|
|
|
|
# ** End **
|
|
|
|
|
|
|
|
- name: Copy lockfile # Make setup workflow happy
|
|
|
|
run: cp ./fresh/pnpm-lock.yaml ./
|
2022-12-30 10:50:56 +08:00
|
|
|
|
|
|
|
- name: Setup Node and pnpm
|
2023-12-26 12:35:11 +08:00
|
|
|
uses: silverhand-io/actions-node-pnpm-run-steps@v4
|
2023-01-17 17:52:54 +08:00
|
|
|
with:
|
|
|
|
run-install: false
|
|
|
|
|
|
|
|
# ** Prepack packages **
|
|
|
|
- name: Prepack fresh
|
|
|
|
working-directory: ./fresh
|
|
|
|
run: pnpm i && pnpm prepack
|
|
|
|
|
|
|
|
- name: Prepack alteration
|
|
|
|
working-directory: ./alteration
|
|
|
|
run: pnpm i && pnpm prepack
|
|
|
|
# ** End **
|
2022-12-30 10:50:56 +08:00
|
|
|
|
2023-01-17 17:52:54 +08:00
|
|
|
- name: Setup Postgres
|
2024-01-11 10:21:28 +08:00
|
|
|
uses: ikalnytskyi/action-setup-postgres@v5
|
2023-01-17 17:52:54 +08:00
|
|
|
|
|
|
|
# ** Setup up-to-date databases and compare (test `up`) **
|
|
|
|
- name: Setup fresh database
|
|
|
|
working-directory: ./fresh
|
2023-12-14 17:25:17 +08:00
|
|
|
run: pnpm cli db seed --test
|
2023-01-17 17:52:54 +08:00
|
|
|
env:
|
|
|
|
DB_URL: postgres://postgres:postgres@localhost:5432/fresh
|
|
|
|
|
|
|
|
- name: Setup alteration database
|
|
|
|
working-directory: ./alteration
|
|
|
|
run: |
|
|
|
|
cd packages/cli
|
2024-02-09 00:19:09 +08:00
|
|
|
pnpm start db seed --test
|
2023-01-17 17:52:54 +08:00
|
|
|
env:
|
|
|
|
DB_URL: postgres://postgres:postgres@localhost:5432/alteration
|
|
|
|
|
|
|
|
- name: Run alteration scripts
|
|
|
|
working-directory: ./fresh
|
|
|
|
run: pnpm cli db alt deploy next
|
|
|
|
env:
|
2023-09-14 10:32:46 +08:00
|
|
|
ALTERATION_TEST: true
|
2023-01-17 17:52:54 +08:00
|
|
|
DB_URL: postgres://postgres:postgres@localhost:5432/alteration
|
|
|
|
|
2023-02-02 18:36:18 +08:00
|
|
|
- name: Compare databases
|
2023-01-17 17:52:54 +08:00
|
|
|
working-directory: ./fresh
|
|
|
|
run: node .scripts/compare-database.js fresh alteration
|
|
|
|
# ** End **
|
|
|
|
|
|
|
|
# ** Setup old databases and compare (test `down`) **
|
2023-01-18 13:12:57 +08:00
|
|
|
- name: Setup old database
|
|
|
|
working-directory: ./alteration
|
|
|
|
run: |
|
|
|
|
cd packages/cli
|
2024-02-09 00:19:09 +08:00
|
|
|
pnpm start db seed --test
|
2023-01-18 13:12:57 +08:00
|
|
|
env:
|
|
|
|
DB_URL: postgres://postgres:postgres@localhost:5432/old
|
|
|
|
|
|
|
|
- name: Revert fresh database to old
|
|
|
|
working-directory: ./fresh
|
2023-02-25 23:15:42 +08:00
|
|
|
run: pnpm cli db alt r v$(echo ${{ steps.version.outputs.current }} | cut -d@ -f3)
|
2023-01-18 13:12:57 +08:00
|
|
|
env:
|
2023-09-14 10:32:46 +08:00
|
|
|
ALTERATION_TEST: true
|
2023-01-18 13:12:57 +08:00
|
|
|
DB_URL: postgres://postgres:postgres@localhost:5432/fresh
|
|
|
|
|
|
|
|
- name: Compare manifests
|
|
|
|
working-directory: ./fresh
|
|
|
|
run: node .scripts/compare-database.js fresh old
|
2023-01-17 17:52:54 +08:00
|
|
|
# ** End **
|
2023-01-18 13:12:57 +08:00
|
|
|
|
2024-01-11 14:38:37 +08:00
|
|
|
- name: Check alteration sequence
|
2023-01-18 13:12:57 +08:00
|
|
|
working-directory: ./fresh
|
|
|
|
run: node .scripts/check-alterations-sequence.js
|