2022-05-10 02:29:53 -05:00
|
|
|
name: Integration Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-07-01 07:33:08 -05:00
|
|
|
branches:
|
|
|
|
- master
|
2022-09-05 04:49:11 -05:00
|
|
|
- "push-action/**"
|
2022-06-27 03:38:39 -05:00
|
|
|
pull_request:
|
2022-06-17 10:58:29 -05:00
|
|
|
|
2022-07-26 03:12:34 -05:00
|
|
|
concurrency:
|
2023-01-18 22:22:17 -05:00
|
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
2022-06-17 10:58:29 -05:00
|
|
|
cancel-in-progress: true
|
2022-05-10 02:29:53 -05:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
package:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Setup Node and pnpm
|
2022-10-15 11:49:16 -05:00
|
|
|
uses: silverhand-io/actions-node-pnpm-run-steps@v2
|
2022-05-10 02:29:53 -05:00
|
|
|
|
2022-09-05 04:49:11 -05:00
|
|
|
- name: Build
|
2022-10-17 06:37:59 -05:00
|
|
|
run: pnpm -r build
|
2022-09-05 04:49:11 -05:00
|
|
|
|
2022-08-08 22:23:05 -05:00
|
|
|
- name: Package
|
2022-11-11 07:17:50 -05:00
|
|
|
run: ./.scripts/package.sh
|
2022-05-10 02:29:53 -05:00
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: integration-test-${{ github.sha }}
|
|
|
|
path: /tmp/logto.tar.gz
|
|
|
|
retention-days: 3
|
2022-07-26 03:12:34 -05:00
|
|
|
|
2022-05-10 02:29:53 -05:00
|
|
|
run-logto:
|
|
|
|
needs: package
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-12-22 00:03:12 -05:00
|
|
|
test_target: [api, ui]
|
2022-07-26 03:12:34 -05:00
|
|
|
|
2022-11-07 10:11:21 -05:00
|
|
|
runs-on: ubuntu-latest
|
2022-05-10 02:29:53 -05:00
|
|
|
|
|
|
|
steps:
|
2022-05-17 03:59:57 -05:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
2022-07-19 09:02:08 -05:00
|
|
|
path: tests
|
2022-05-17 03:59:57 -05:00
|
|
|
|
2022-07-19 09:02:08 -05:00
|
|
|
- name: Copy lockfile
|
|
|
|
run: |
|
|
|
|
cp tests/pnpm-lock.yaml ./
|
|
|
|
cp tests/package.json ./
|
|
|
|
|
|
|
|
- name: Setup Node and pnpm
|
2022-10-15 11:49:16 -05:00
|
|
|
uses: silverhand-io/actions-node-pnpm-run-steps@v2
|
2022-05-10 02:29:53 -05:00
|
|
|
with:
|
2022-07-19 09:02:08 -05:00
|
|
|
run-install: false
|
2022-05-10 02:29:53 -05:00
|
|
|
|
2022-07-19 09:02:08 -05:00
|
|
|
# Setup integration test
|
2022-05-17 03:59:57 -05:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2022-10-15 11:49:16 -05:00
|
|
|
cd tests
|
2022-07-19 09:02:08 -05:00
|
|
|
pnpm i
|
2022-07-20 01:21:13 -05:00
|
|
|
pnpm prepack
|
2022-11-07 10:11:21 -05:00
|
|
|
# Install Chromium
|
|
|
|
cd packages/integration-tests/node_modules/puppeteer
|
|
|
|
pnpm postinstall
|
2022-05-17 03:59:57 -05:00
|
|
|
|
|
|
|
# Setup environment
|
2022-09-01 00:54:40 -05:00
|
|
|
- name: Setup Postgres
|
2023-01-04 01:09:10 -05:00
|
|
|
uses: ikalnytskyi/action-setup-postgres@v4
|
2022-05-10 02:29:53 -05:00
|
|
|
|
|
|
|
- uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: integration-test-${{ github.sha }}
|
|
|
|
|
|
|
|
- name: Extract
|
2022-10-15 11:49:16 -05:00
|
|
|
working-directory: tests
|
|
|
|
run: |
|
2023-01-17 04:52:54 -05:00
|
|
|
npm run cli init -- -p ../logto --db postgres://postgres:postgres@localhost:5432/postgres --du ../logto.tar.gz
|
2022-10-15 11:49:16 -05:00
|
|
|
|
2022-12-29 21:42:34 -05:00
|
|
|
- name: Check and add mock connectors
|
2022-10-15 11:49:16 -05:00
|
|
|
working-directory: tests
|
|
|
|
run: |
|
2022-12-29 21:42:34 -05:00
|
|
|
npm run cli connector list -- -p ../logto | grep OFFICIAL
|
2022-12-06 04:04:57 -05:00
|
|
|
npm run cli connector add @logto/connector-mock-sms @logto/connector-mock-email @logto/connector-mock-standard-email @logto/connector-mock-social -- -p ../logto
|
2022-10-08 04:12:19 -05:00
|
|
|
|
2022-05-10 02:29:53 -05:00
|
|
|
- name: Run Logto
|
2022-10-19 02:38:56 -05:00
|
|
|
working-directory: logto/
|
|
|
|
run: npm start &
|
2022-05-10 02:29:53 -05:00
|
|
|
env:
|
2022-07-20 01:21:13 -05:00
|
|
|
INTEGRATION_TEST: true
|
2022-05-10 02:29:53 -05:00
|
|
|
|
|
|
|
- name: Sleep for 5 seconds
|
|
|
|
run: sleep 5
|
|
|
|
|
2022-05-17 03:59:57 -05:00
|
|
|
# Test
|
|
|
|
- name: Run tests
|
|
|
|
run: |
|
2022-10-15 11:49:16 -05:00
|
|
|
cd tests/packages/integration-tests
|
2022-12-22 00:03:12 -05:00
|
|
|
pnpm build
|
|
|
|
pnpm test:${{ matrix.test_target }}
|
2022-05-17 03:59:57 -05:00
|
|
|
env:
|
2022-08-12 05:07:16 -05:00
|
|
|
INTEGRATION_TESTS_LOGTO_URL: http://localhost:3001
|