AFFiNE/.github/workflows/build.yml

364 lines
12 KiB
YAML
Raw Normal View History

2023-02-14 21:52:45 +03:00
name: Build & Test
on:
issue_comment:
types: [created]
2023-03-22 05:20:30 +03:00
env:
BUILD_URL: '${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}'
jobs:
2023-03-23 19:47:58 +03:00
pull_request:
name: Get Pull Request SHA
runs-on: ubuntu-latest
2023-03-23 21:44:53 +03:00
if: github.repository == 'toeverything/AFFiNE' && github.event.issue.pull_request && startsWith(github.event.comment.body, '/test run')
2023-03-23 19:47:58 +03:00
outputs:
pr_sha: ${{ steps.get-pr.outputs.result }}
steps:
- uses: actions/github-script@v6
id: get-pr
with:
debug: ${{ secrets.ACTIONS_STEP_DEBUG || false }}
result-encoding: string
script: |
const { data: pull_request } = await github.rest.pulls.get({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: context.issue.number,
});
return pull_request.head.sha;
build:
name: Build on Pull Request
runs-on: ubuntu-latest
environment: development
2023-03-23 19:47:58 +03:00
needs: [pull_request]
steps:
- uses: actions/github-script@v6
with:
script: |
const user = context.payload.sender.login
console.log(`Validate user: ${user}`)
let isAffineMember = false
try {
const { status } = await github.rest.orgs.checkMembershipForUser({
org: 'toeverything',
username: user
});
isAffineMember = (status === 204)
} catch (e) {}
if (isAffineMember) {
console.log('Allowed')
await github.rest.reactions.createForIssueComment({
owner: context.repo.owner,
repo: context.repo.repo,
comment_id: context.payload.comment.id,
content: '+1',
})
} else {
console.log('Not allowed')
await github.rest.reactions.createForIssueComment({
owner: context.repo.owner,
repo: context.repo.repo,
comment_id: context.payload.comment.id,
content: '-1',
})
throw new Error('not allowed')
}
2023-03-22 06:33:41 +03:00
- name: 'Create Build check'
uses: actions/github-script@v6
id: create-check
# https://docs.github.com/en/rest/checks/runs?apiVersion=2022-11-28#create-a-check-run
with:
debug: ${{ secrets.ACTIONS_STEP_DEBUG || false }}
result-encoding: string
script: |
const { data: check } = await github.rest.checks.create({
owner: context.repo.owner,
repo: context.repo.repo,
2023-03-23 19:47:58 +03:00
head_sha: "${{ needs.pull_request.outputs.pr_sha }}",
2023-03-22 06:33:41 +03:00
name: "Build on Pull Request",
status: "in_progress",
2023-03-23 21:47:52 +03:00
details_url: "${{ env.BUILD_URL }}",
2023-03-23 21:44:53 +03:00
output: {
title: "Build on Pull Request",
summary: "Please check the build result ${{ env.BUILD_URL }}",
},
2023-03-22 06:33:41 +03:00
});
return check.id;
- uses: actions/checkout@v3
with:
2023-03-23 19:47:58 +03:00
ref: ${{ needs.pull_request.outputs.pr_sha }}
2023-03-24 18:44:14 +03:00
- name: Setup Node.js
uses: ./.github/actions/setup-node
# To prevent tampering with Yarns binary file
- name: Check yarn releases
run: |
yarn set version self
git diff --exit-code
2023-03-20 10:05:02 +03:00
- run: yarn lint --max-warnings=0
- name: Build
2023-03-20 10:05:02 +03:00
run: yarn build
env:
NEXT_PUBLIC_FIREBASE_API_KEY: ${{ secrets.NEXT_PUBLIC_FIREBASE_API_KEY }}
NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN: ${{ secrets.NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN }}
NEXT_PUBLIC_FIREBASE_PROJECT_ID: ${{ secrets.NEXT_PUBLIC_FIREBASE_PROJECT_ID }}
NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET: ${{ secrets.NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET }}
NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID: ${{ secrets.NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID }}
NEXT_PUBLIC_FIREBASE_APP_ID: ${{ secrets.NEXT_PUBLIC_FIREBASE_APP_ID }}
NEXT_PUBLIC_FIREBASE_MEASUREMENT_ID: ${{ secrets.NEXT_PUBLIC_FIREBASE_MEASUREMENT_ID }}
- name: Export
2023-03-20 10:05:02 +03:00
run: yarn export
2023-03-22 06:33:41 +03:00
- name: Set Failure Check
uses: actions/github-script@v6
if: ${{ failure() }}
with:
debug: ${{ secrets.ACTIONS_STEP_DEBUG || false }}
result-encoding: string
script: |
await github.rest.checks.update({
owner: context.repo.owner,
repo: context.repo.repo,
check_run_id: ${{ steps.create-check.outputs.result }},
status: "completed",
conclusion: "failure",
completed_at: new Date().toISOString(),
});
- name: Set Success Check
uses: actions/github-script@v6
if: ${{ success() }}
with:
debug: ${{ secrets.ACTIONS_STEP_DEBUG || false }}
result-encoding: string
script: |
await github.rest.checks.update({
owner: context.repo.owner,
repo: context.repo.repo,
check_run_id: ${{ steps.create-check.outputs.result }},
status: "completed",
conclusion: "success",
completed_at: new Date().toISOString(),
});
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: artifact
2023-02-10 15:41:01 +03:00
path: ./apps/web/.next
2023-01-03 07:09:37 +03:00
e2e-test:
name: E2E Test
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
shard: [1, 2, 3, 4]
environment: development
2023-03-23 19:47:58 +03:00
needs: [build, pull_request]
permissions:
contents: read
packages: write
2023-03-22 05:25:19 +03:00
checks: write
services:
octobase:
image: ghcr.io/toeverything/cloud-self-hosted: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:
2023-02-06 18:21:23 +03:00
- uses: actions/checkout@v3
2023-03-21 05:58:23 +03:00
with:
2023-03-23 19:47:58 +03:00
ref: ${{ needs.pull_request.outputs.pr_sha }}
2023-03-22 05:20:30 +03:00
- name: 'Create E2E test check'
uses: actions/github-script@v6
id: create-check
# https://docs.github.com/en/rest/checks/runs?apiVersion=2022-11-28#create-a-check-run
with:
debug: ${{ secrets.ACTIONS_STEP_DEBUG || false }}
result-encoding: string
script: |
const { data: check } = await github.rest.checks.create({
owner: context.repo.owner,
repo: context.repo.repo,
2023-03-23 19:47:58 +03:00
head_sha: "${{ needs.pull_request.outputs.pr_sha }}",
2023-03-22 05:20:30 +03:00
name: "E2E Test (${{ matrix.shard }}/${{ strategy.job-total }})",
status: "in_progress",
2023-03-23 21:47:52 +03:00
details_url: "${{ env.BUILD_URL }}",
2023-03-23 21:44:53 +03:00
output: {
title: "E2E Test (${{ matrix.shard }}/${{ strategy.job-total }})",
summary: "Please check the e2e test result ${{ env.BUILD_URL }}",
},
2023-03-22 05:20:30 +03:00
});
return check.id;
2023-03-24 18:44:14 +03:00
- 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
2023-03-20 10:05:02 +03:00
run: yarn test --forbid-only --shard=${{ matrix.shard }}/${{ strategy.job-total }}
env:
COVERAGE: true
2023-02-06 18:21:23 +03:00
2023-03-22 05:20:30 +03:00
- name: Set Failure Check
uses: actions/github-script@v6
if: ${{ failure() }}
with:
debug: ${{ secrets.ACTIONS_STEP_DEBUG || false }}
result-encoding: string
script: |
await github.rest.checks.update({
owner: context.repo.owner,
repo: context.repo.repo,
check_run_id: ${{ steps.create-check.outputs.result }},
status: "completed",
conclusion: "failure",
completed_at: new Date().toISOString(),
});
- name: Set Success Check
uses: actions/github-script@v6
if: ${{ success() }}
with:
debug: ${{ secrets.ACTIONS_STEP_DEBUG || false }}
result-encoding: string
script: |
await github.rest.checks.update({
owner: context.repo.owner,
repo: context.repo.repo,
check_run_id: ${{ steps.create-check.outputs.result }},
status: "completed",
conclusion: "success",
completed_at: new Date().toISOString(),
});
2023-02-06 18:21:23 +03:00
- name: Collect code coverage report
2023-03-20 10:05:02 +03:00
run: yarn exec nyc report -t .nyc_output --report-dir .coverage --reporter=lcov
2023-02-06 18:21:23 +03:00
- 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
environment: development
2023-03-23 19:47:58 +03:00
needs: [build, pull_request]
permissions:
contents: read
packages: write
checks: write
services:
octobase:
image: ghcr.io/toeverything/cloud-self-hosted: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
with:
2023-03-23 19:47:58 +03:00
ref: ${{ needs.pull_request.outputs.pr_sha }}
2023-03-22 06:33:41 +03:00
- name: 'Create Unit test check'
uses: actions/github-script@v6
id: create-check
# https://docs.github.com/en/rest/checks/runs?apiVersion=2022-11-28#create-a-check-run
with:
debug: ${{ secrets.ACTIONS_STEP_DEBUG || false }}
result-encoding: string
script: |
const { data: check } = await github.rest.checks.create({
owner: context.repo.owner,
repo: context.repo.repo,
2023-03-23 19:47:58 +03:00
head_sha: "${{ needs.pull_request.outputs.pr_sha }}",
2023-03-22 06:33:41 +03:00
name: "Unit Test",
status: "in_progress",
2023-03-23 21:47:52 +03:00
details_url: "${{ env.BUILD_URL }}",
2023-03-23 21:44:53 +03:00
output: {
title: "Unit Test",
summary: "Please check the unit test result ${{ env.BUILD_URL }}",
},
2023-03-22 06:33:41 +03:00
});
return check.id;
2023-03-24 18:44:14 +03:00
- 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: Unit Test
2023-03-20 10:05:02 +03:00
run: yarn run test:unit:coverage
2023-03-22 06:33:41 +03:00
- name: Set Failure Check
uses: actions/github-script@v6
if: ${{ failure() }}
with:
debug: ${{ secrets.ACTIONS_STEP_DEBUG || false }}
result-encoding: string
script: |
await github.rest.checks.update({
owner: context.repo.owner,
repo: context.repo.repo,
check_run_id: ${{ steps.create-check.outputs.result }},
status: "completed",
conclusion: "failure",
completed_at: new Date().toISOString(),
});
- name: Set Success Check
uses: actions/github-script@v6
if: ${{ success() }}
with:
debug: ${{ secrets.ACTIONS_STEP_DEBUG || false }}
result-encoding: string
script: |
await github.rest.checks.update({
owner: context.repo.owner,
repo: context.repo.repo,
check_run_id: ${{ steps.create-check.outputs.result }},
status: "completed",
conclusion: "success",
completed_at: new Date().toISOString(),
});
- name: Upload unit test coverage results
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./.coverage/store/lcov.info
flags: unittest
2023-03-28 06:15:27 +03:00
override_pr: ${{ github.event.issue.id }}
name: affine
fail_ci_if_error: true