2024-06-03 03:20:45 +00:00
|
|
|
name: Web Code Coverage
|
2024-04-29 06:32:14 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- ".github/workflows/web2_ci.yaml"
|
|
|
|
- "frontend/appflowy_web_app/**"
|
|
|
|
- "frontend/resources/**"
|
2024-06-06 09:48:58 +00:00
|
|
|
|
2024-04-29 06:32:14 +00:00
|
|
|
env:
|
|
|
|
NODE_VERSION: "18.16.0"
|
|
|
|
PNPM_VERSION: "8.5.0"
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
2024-06-03 03:20:45 +00:00
|
|
|
test:
|
2024-04-29 06:32:14 +00:00
|
|
|
if: github.event.pull_request.draft != true
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Maximize build space (ubuntu only)
|
|
|
|
run: |
|
|
|
|
sudo rm -rf /usr/share/dotnet
|
|
|
|
sudo rm -rf /opt/ghc
|
|
|
|
sudo rm -rf "/usr/local/share/boost"
|
|
|
|
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
|
|
|
|
sudo docker image prune --all --force
|
|
|
|
sudo rm -rf /opt/hostedtoolcache/codeQL
|
|
|
|
sudo rm -rf ${GITHUB_WORKSPACE}/.git
|
|
|
|
sudo rm -rf $ANDROID_HOME/ndk
|
|
|
|
- name: setup node
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: ${{ env.NODE_VERSION }}
|
|
|
|
- name: setup pnpm
|
|
|
|
uses: pnpm/action-setup@v2
|
|
|
|
with:
|
|
|
|
version: ${{ env.PNPM_VERSION }}
|
|
|
|
# Install pnpm dependencies, cache them correctly
|
|
|
|
# and run all Cypress tests
|
|
|
|
- name: Cypress run
|
|
|
|
uses: cypress-io/github-action@v6
|
|
|
|
with:
|
|
|
|
working-directory: frontend/appflowy_web_app
|
|
|
|
component: true
|
|
|
|
build: pnpm run build
|
|
|
|
start: pnpm run start
|
2024-06-03 03:20:45 +00:00
|
|
|
browser: chrome
|
|
|
|
|
|
|
|
- name: Jest run
|
|
|
|
working-directory: frontend/appflowy_web_app
|
|
|
|
run: |
|
|
|
|
pnpm run test:unit
|
|
|
|
|
2024-06-06 09:48:58 +00:00
|
|
|
- name: Upload coverage to Codecov
|
|
|
|
uses: codecov/codecov-action@v2
|
|
|
|
with:
|
|
|
|
token: cf9245e0-e136-4e21-b0ee-35755fa0c493
|
|
|
|
files: frontend/appflowy_web_app/coverage/jest/lcov.info,frontend/appflowy_web_app/coverage/cypress/lcov.info
|
|
|
|
flags: appflowy_web_app
|
|
|
|
name: frontend/appflowy_web_app
|
|
|
|
fail_ci_if_error: true
|
|
|
|
verbose: true
|
|
|
|
|