2021-02-02 15:23:12 +08:00
|
|
|
name: gh-pages
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-06-04 10:32:19 +08:00
|
|
|
node-version: [14.x]
|
2021-02-02 15:23:12 +08:00
|
|
|
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: n1hility/cancel-previous-runs@v2
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
persist-credentials: false
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
2022-02-15 14:17:27 +08:00
|
|
|
- name: build gh-pages
|
|
|
|
run: |
|
2022-04-20 16:11:30 +08:00
|
|
|
npm i --legacy-peer-deps
|
2022-06-02 13:28:23 +08:00
|
|
|
npm run build --workspaces
|
2021-02-02 15:23:12 +08:00
|
|
|
sh deploy-gh-pages.sh
|
|
|
|
- name: Deploy 🚀
|
|
|
|
uses: JamesIves/github-pages-deploy-action@3.7.1
|
|
|
|
with:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
BRANCH: gh-pages # The branch the action should deploy to.
|
|
|
|
FOLDER: gh-pages # The folder the action should deploy.
|
|
|
|
CLEAN: true # Automatically remove deleted files from the deploy branch
|
2021-04-14 18:18:07 +08:00
|
|
|
SINGLE_COMMIT: true
|
2022-04-20 16:11:30 +08:00
|
|
|
- name: Generate coverage report
|
|
|
|
run: |
|
|
|
|
npm run coverage
|
|
|
|
- uses: codecov/codecov-action@v2
|
|
|
|
with:
|
|
|
|
files: ./coverage/clover.xml
|
|
|
|
name: codecov-umbrella # optional
|
|
|
|
fail_ci_if_error: false
|
|
|
|
verbose: true # optional (default = false)
|