mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-24 15:51:55 +03:00
ci: improve build-master.yml
This commit is contained in:
parent
a1600a3671
commit
d780e90d88
91
.github/workflows/build-master.yml
vendored
91
.github/workflows/build-master.yml
vendored
@ -84,8 +84,65 @@ jobs:
|
|||||||
tags: ${{ steps.meta.outputs.tags }}
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
labels: ${{ steps.meta.outputs.labels }}
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
|
|
||||||
test-frontend:
|
e2e-test:
|
||||||
name: Test Frontend
|
name: E2E Test
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
shard: [1, 2, 3, 4]
|
||||||
|
environment: development
|
||||||
|
needs: build-frontend
|
||||||
|
services:
|
||||||
|
octobase:
|
||||||
|
image: ghcr.io/toeverything/cloud:nightly-latest
|
||||||
|
ports:
|
||||||
|
- 3000:3000
|
||||||
|
env:
|
||||||
|
SIGN_KEY: 'test123'
|
||||||
|
RUST_LOG: 'debug'
|
||||||
|
JWST_DEV: '1'
|
||||||
|
credentials:
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.ACTIONS_PACKAGE_PUBLISH }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Setup Node.js
|
||||||
|
uses: ./.github/actions/setup-node
|
||||||
|
- name: Download artifact
|
||||||
|
uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: artifact
|
||||||
|
path: ./apps/web/.next
|
||||||
|
|
||||||
|
- name: Run playwright tests
|
||||||
|
run: yarn test --forbid-only --shard=${{ matrix.shard }}/${{ strategy.job-total }}
|
||||||
|
env:
|
||||||
|
COVERAGE: true
|
||||||
|
|
||||||
|
- name: Collect code coverage report
|
||||||
|
run: yarn exec nyc report -t .nyc_output --report-dir .coverage --reporter=lcov
|
||||||
|
|
||||||
|
- name: Upload e2e test coverage results
|
||||||
|
uses: codecov/codecov-action@v3
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.CODECOV_TOKEN }}
|
||||||
|
files: ./.coverage/lcov.info
|
||||||
|
flags: e2etest
|
||||||
|
name: affine
|
||||||
|
fail_ci_if_error: true
|
||||||
|
|
||||||
|
- name: Upload test results
|
||||||
|
if: ${{ failure() }}
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: test-results-e2e
|
||||||
|
path: ./test-results
|
||||||
|
if-no-files-found: ignore
|
||||||
|
|
||||||
|
unit-test:
|
||||||
|
name: Unit Test
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
environment: development
|
environment: development
|
||||||
needs: build-frontend
|
needs: build-frontend
|
||||||
@ -106,32 +163,14 @@ jobs:
|
|||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Setup Node.js
|
- name: Setup Node.js
|
||||||
uses: ./.github/actions/setup-node
|
uses: ./.github/actions/setup-node
|
||||||
with:
|
|
||||||
npm-token: ${{ secrets.NPM_GITHUB_AUTH_TOKEN }}
|
|
||||||
- name: Download artifact
|
- name: Download artifact
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: artifact
|
name: artifact
|
||||||
path: ./apps/web/.next
|
path: ./apps/web/.next
|
||||||
|
|
||||||
- name: Run e2e & unit tests
|
- name: Unit Test
|
||||||
run: |
|
run: yarn run test:unit:coverage
|
||||||
yarn test --forbid-only
|
|
||||||
yarn run test:unit:coverage
|
|
||||||
env:
|
|
||||||
COVERAGE: true
|
|
||||||
|
|
||||||
- name: Collect code coverage report
|
|
||||||
run: yarn exec nyc report -t .nyc_output --report-dir .coverage --reporter=lcov
|
|
||||||
|
|
||||||
- name: Upload e2e test coverage results
|
|
||||||
uses: codecov/codecov-action@v3
|
|
||||||
with:
|
|
||||||
token: ${{ secrets.CODECOV_TOKEN }}
|
|
||||||
files: ./.coverage/lcov.info
|
|
||||||
flags: e2etest
|
|
||||||
name: affine
|
|
||||||
fail_ci_if_error: true
|
|
||||||
|
|
||||||
- name: Upload unit test coverage results
|
- name: Upload unit test coverage results
|
||||||
uses: codecov/codecov-action@v3
|
uses: codecov/codecov-action@v3
|
||||||
@ -141,11 +180,3 @@ jobs:
|
|||||||
flags: unittest
|
flags: unittest
|
||||||
name: affine
|
name: affine
|
||||||
fail_ci_if_error: true
|
fail_ci_if_error: true
|
||||||
|
|
||||||
- name: Upload test results
|
|
||||||
if: ${{ failure() }}
|
|
||||||
uses: actions/upload-artifact@v2
|
|
||||||
with:
|
|
||||||
name: test-results-e2e
|
|
||||||
path: ./test-results
|
|
||||||
if-no-files-found: ignore
|
|
||||||
|
Loading…
Reference in New Issue
Block a user