2021-02-16 17:50:41 +08:00
|
|
|
# Origin Source
|
|
|
|
# https://github.com/ant-design/ant-design/blob/79f566b7f8abb1012ef55b0d2793bfdf5595b85d/.github/workflows/test.yml
|
|
|
|
name: ✅ test
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
2022-03-29 20:46:37 +08:00
|
|
|
# Cancel prev CI if new commit come
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-04-11 11:15:26 +08:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-02-16 17:50:41 +08:00
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-08-18 00:23:19 +08:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: oven-sh/setup-bun@v2
|
|
|
|
- run: bun install
|
|
|
|
- run: bun run lint
|
2024-01-14 17:15:39 +08:00
|
|
|
|
2024-08-11 14:14:06 +08:00
|
|
|
################################ Test ################################
|
|
|
|
test-react-legacy:
|
|
|
|
name: test-react-legacy
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
react: ['16', '17']
|
|
|
|
shard: ['1/2', '2/2']
|
|
|
|
env:
|
|
|
|
REACT: ${{ matrix.react }}
|
2021-02-16 17:50:41 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-08-18 00:23:19 +08:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: oven-sh/setup-bun@v2
|
|
|
|
- run: bun install
|
2024-08-11 14:14:06 +08:00
|
|
|
- name: install react 16
|
|
|
|
if: ${{ matrix.react == '16' }}
|
2024-08-18 00:23:19 +08:00
|
|
|
run: bun run bun-install-react-16
|
2024-08-11 14:14:06 +08:00
|
|
|
- name: install react 17
|
|
|
|
if: ${{ matrix.react == '17' }}
|
2024-08-18 00:23:19 +08:00
|
|
|
run: bun run bun-install-react-17
|
2024-08-11 14:14:06 +08:00
|
|
|
# dom test
|
|
|
|
- name: dom test
|
2024-08-18 00:23:19 +08:00
|
|
|
run: bun run test -- --maxWorkers=2 --shard=${{matrix.shard}} --coverage
|
2024-08-11 14:14:06 +08:00
|
|
|
|
|
|
|
test-node:
|
|
|
|
name: test-node
|
2022-03-29 20:46:37 +08:00
|
|
|
runs-on: ubuntu-latest
|
2021-02-16 17:50:41 +08:00
|
|
|
steps:
|
2024-08-18 00:23:19 +08:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: oven-sh/setup-bun@v2
|
|
|
|
- run: bun install
|
|
|
|
- run: bun run test:node
|
2022-03-30 14:35:43 +08:00
|
|
|
|
2024-08-11 14:14:06 +08:00
|
|
|
test-react-latest:
|
|
|
|
name: test-react-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
module: ['dom']
|
|
|
|
shard: ['1/2', '2/2']
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-08-18 00:23:19 +08:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: oven-sh/setup-bun@v2
|
|
|
|
- run: bun install
|
2024-06-11 15:16:52 +08:00
|
|
|
|
|
|
|
# dom test
|
|
|
|
- name: dom test
|
2024-08-18 00:23:19 +08:00
|
|
|
run: bun run test -- --maxWorkers=2 --shard=${{matrix.shard}} --coverage
|
2024-06-11 15:16:52 +08:00
|
|
|
|
2024-08-11 14:14:06 +08:00
|
|
|
- name: persist coverages
|
|
|
|
run: |
|
|
|
|
mkdir persist-coverage
|
|
|
|
mv coverage/coverage-final.json persist-coverage/react-test-${{matrix.module}}-${{strategy.job-index}}.json
|
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v4
|
|
|
|
name: upload coverages
|
|
|
|
with:
|
|
|
|
name: coverage-artifacts-${{ matrix.module }}-${{ strategy.job-index }}
|
|
|
|
path: persist-coverage/
|
2024-06-11 15:16:52 +08:00
|
|
|
|
2024-08-11 14:14:06 +08:00
|
|
|
test-react-latest-dist:
|
|
|
|
name: test-react-latest-dist
|
2024-06-11 15:16:52 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-08-11 14:14:06 +08:00
|
|
|
module: ['dist', 'dist-min']
|
2024-06-11 15:16:52 +08:00
|
|
|
shard: ['1/2', '2/2']
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: build
|
|
|
|
steps:
|
2024-08-18 00:23:19 +08:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: oven-sh/setup-bun@v2
|
|
|
|
- run: bun install
|
2022-03-30 14:35:43 +08:00
|
|
|
|
2022-03-29 20:46:37 +08:00
|
|
|
- name: restore cache from dist
|
2024-02-01 18:20:41 +08:00
|
|
|
uses: actions/cache@v4
|
2021-02-16 17:50:41 +08:00
|
|
|
with:
|
2022-03-29 20:46:37 +08:00
|
|
|
path: dist
|
|
|
|
key: dist-${{ github.sha }}
|
2021-02-16 17:50:41 +08:00
|
|
|
|
2024-08-11 14:14:06 +08:00
|
|
|
- name: dist-min test
|
|
|
|
if: ${{ matrix.module == 'dist-min' }}
|
2024-08-18 00:23:19 +08:00
|
|
|
run: bun run test
|
2023-09-04 19:27:20 +08:00
|
|
|
env:
|
2024-08-11 14:14:06 +08:00
|
|
|
LIB_DIR: dist-min
|
2022-03-29 20:46:37 +08:00
|
|
|
|
|
|
|
- name: dist test
|
|
|
|
if: ${{ matrix.module == 'dist' }}
|
2024-08-18 00:23:19 +08:00
|
|
|
run: bun run test
|
2021-02-16 17:50:41 +08:00
|
|
|
env:
|
2022-03-29 20:46:37 +08:00
|
|
|
LIB_DIR: dist
|
2023-11-27 21:37:32 +08:00
|
|
|
|
2022-08-30 14:40:20 +08:00
|
|
|
############################ Test Coverage ###########################
|
|
|
|
upload-test-coverage:
|
|
|
|
name: test-coverage
|
|
|
|
runs-on: ubuntu-latest
|
2024-08-11 14:14:06 +08:00
|
|
|
needs: test-react-latest
|
2022-08-30 14:40:20 +08:00
|
|
|
steps:
|
2023-09-05 11:55:52 +08:00
|
|
|
- uses: actions/checkout@v4
|
2024-08-18 00:23:19 +08:00
|
|
|
- uses: oven-sh/setup-bun@v2
|
|
|
|
- run: bun install
|
2023-02-19 13:56:20 +08:00
|
|
|
|
2024-02-02 22:38:36 +08:00
|
|
|
- uses: actions/download-artifact@v4
|
2022-08-30 14:40:20 +08:00
|
|
|
with:
|
2024-02-02 22:38:36 +08:00
|
|
|
pattern: coverage-artifacts-*
|
|
|
|
merge-multiple: true
|
2022-08-30 14:40:20 +08:00
|
|
|
path: persist-coverage
|
|
|
|
- name: Merge Code Coverage
|
|
|
|
run: |
|
2024-08-18 00:23:19 +08:00
|
|
|
bunx nyc merge persist-coverage/ coverage/coverage-final.json
|
|
|
|
bunx nyc report --reporter text -t coverage --report-dir coverage
|
2022-08-30 14:40:20 +08:00
|
|
|
rm -rf persist-coverage
|
|
|
|
- name: Upload coverage to codecov
|
2024-02-01 22:04:29 +08:00
|
|
|
uses: codecov/codecov-action@v4
|
2022-08-30 14:40:20 +08:00
|
|
|
with:
|
|
|
|
# use own token to upload coverage reports
|
|
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
|
|
|
2022-03-29 20:46:37 +08:00
|
|
|
########################### Compile & Test ###########################
|
2024-04-07 19:14:44 +08:00
|
|
|
build:
|
2021-02-16 17:50:41 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-08-18 00:23:19 +08:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: oven-sh/setup-bun@v2
|
|
|
|
- run: bun install
|
2021-02-16 17:50:41 +08:00
|
|
|
|
2022-11-22 16:21:37 +08:00
|
|
|
- name: cache lib
|
2024-02-01 18:20:41 +08:00
|
|
|
uses: actions/cache@v4
|
2022-11-22 16:21:37 +08:00
|
|
|
with:
|
|
|
|
path: lib
|
|
|
|
key: lib-${{ github.sha }}
|
|
|
|
|
2022-03-29 20:46:37 +08:00
|
|
|
- name: cache es
|
2024-02-01 18:20:41 +08:00
|
|
|
uses: actions/cache@v4
|
2021-02-16 17:50:41 +08:00
|
|
|
with:
|
|
|
|
path: es
|
|
|
|
key: es-${{ github.sha }}
|
|
|
|
|
2022-03-29 20:46:37 +08:00
|
|
|
- name: compile
|
2024-08-18 00:23:19 +08:00
|
|
|
run: bun run compile
|
2022-11-22 16:21:37 +08:00
|
|
|
|
2024-04-07 19:14:44 +08:00
|
|
|
- name: cache dist
|
|
|
|
uses: actions/cache@v4
|
|
|
|
with:
|
|
|
|
path: dist
|
|
|
|
key: dist-${{ github.sha }}
|
|
|
|
|
|
|
|
- name: dist
|
2024-08-18 00:23:19 +08:00
|
|
|
run: bun run dist
|
2024-04-07 19:14:44 +08:00
|
|
|
env:
|
|
|
|
NODE_OPTIONS: "--max_old_space_size=4096"
|
|
|
|
CI: 1
|
|
|
|
|
2024-08-11 14:14:06 +08:00
|
|
|
- name: check build files
|
|
|
|
run: node ./tests/dekko/index.test.js
|
|
|
|
|
2024-04-16 16:41:02 +08:00
|
|
|
# Artifact build files
|
2024-04-07 19:14:44 +08:00
|
|
|
- uses: actions/upload-artifact@v4
|
|
|
|
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
|
|
|
|
with:
|
|
|
|
name: build artifacts
|
|
|
|
path: |
|
|
|
|
dist
|
|
|
|
locale
|
|
|
|
es
|
|
|
|
lib
|
2021-02-16 17:50:41 +08:00
|
|
|
|
2024-04-16 16:41:02 +08:00
|
|
|
- name: zip builds
|
2024-05-06 14:50:34 +08:00
|
|
|
if: github.repository == 'ant-design/ant-design' && github.event_name == 'push' && github.ref == 'refs/heads/master'
|
2024-04-16 16:41:02 +08:00
|
|
|
env:
|
|
|
|
ALI_OSS_AK_ID: ${{ secrets.ALI_OSS_AK_ID }}
|
|
|
|
ALI_OSS_AK_SECRET: ${{ secrets.ALI_OSS_AK_SECRET }}
|
|
|
|
HEAD_SHA: ${{ github.sha }}
|
|
|
|
run: |
|
|
|
|
zip -r oss-artifacts.zip dist locale es lib
|
|
|
|
echo "🤖 Uploading"
|
|
|
|
node scripts/visual-regression/upload.js ./oss-artifacts.zip --ref=$HEAD_SHA
|
|
|
|
|
2024-08-11 14:14:06 +08:00
|
|
|
test-lib-es:
|
|
|
|
name: test lib/es module
|
2021-02-16 17:50:41 +08:00
|
|
|
runs-on: ubuntu-latest
|
2022-03-29 20:46:37 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-11-22 16:21:37 +08:00
|
|
|
module: [lib, es]
|
2022-06-01 16:40:09 +08:00
|
|
|
shard: ['1/2', '2/2']
|
2021-02-16 17:50:41 +08:00
|
|
|
steps:
|
2024-08-18 00:23:19 +08:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: oven-sh/setup-bun@v2
|
|
|
|
- run: bun install
|
2021-02-16 17:50:41 +08:00
|
|
|
|
2022-03-29 20:46:37 +08:00
|
|
|
- name: restore cache from ${{ matrix.module }}
|
2022-03-30 14:35:43 +08:00
|
|
|
# lib only run in master branch not in pull request
|
|
|
|
if: ${{ github.event_name != 'pull_request' || matrix.module != 'lib' }}
|
2024-02-01 18:20:41 +08:00
|
|
|
uses: actions/cache@v4
|
2022-03-29 20:46:37 +08:00
|
|
|
with:
|
|
|
|
path: ${{ matrix.module }}
|
|
|
|
key: ${{ matrix.module }}-${{ github.sha }}
|
|
|
|
|
2024-08-11 14:14:06 +08:00
|
|
|
- name: compile
|
|
|
|
# lib only run in master branch not in pull request
|
|
|
|
if: ${{ github.event_name != 'pull_request' || matrix.module != 'lib' }}
|
2024-08-18 00:23:19 +08:00
|
|
|
run: bun run compile
|
2022-03-30 14:35:43 +08:00
|
|
|
|
2021-02-16 17:50:41 +08:00
|
|
|
- name: test
|
2022-03-30 14:35:43 +08:00
|
|
|
# lib only run in master branch not in pull request
|
|
|
|
if: ${{ github.event_name != 'pull_request' || matrix.module != 'lib' }}
|
2024-08-18 00:23:19 +08:00
|
|
|
run: bun run test -- --maxWorkers=2 --shard=${{matrix.shard}}
|
2021-02-16 17:50:41 +08:00
|
|
|
env:
|
2022-03-29 20:46:37 +08:00
|
|
|
LIB_DIR: ${{ matrix.module }}
|