-
Notifications
You must be signed in to change notification settings - Fork 672
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: merge branch 'master' into wvt
- Loading branch information
Showing
35 changed files
with
489 additions
and
287 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
name: CI | ||
|
||
on: push | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: jwalton/gh-find-current-pr@v1 | ||
id: findPr | ||
with: | ||
state: all | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: '.nvmrc' | ||
cache: 'yarn' | ||
- name: Comment on github | ||
run: node ./scripts/github/comment.js "[Preview Preparing...](https://github.com/ng-alain/delon/actions/runs/${{ github.run_id }})" | ||
env: | ||
ACCESS_REPO: ${{ github.repository }} | ||
ACCESS_TOKEN: ${{ secrets.CI_TOKEN }} | ||
PR_NUMBER: ${{ steps.findPr.outputs.pr }} | ||
- uses: actions/cache@v3 | ||
with: | ||
path: ./node_modules | ||
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock', '**/*.patch') }} | ||
- name: Install node modules | ||
run: yarn install --frozen-lockfile | ||
- name: Build artifacts | ||
run: ./scripts/ci/build-artifacts.sh | ||
env: | ||
ACCESS_TOKEN: ${{ secrets.CI_TOKEN }} | ||
- name: Build site | ||
run: yarn run site:build | ||
- name: 'Deploy Site' | ||
run: | | ||
export DEPLOY_DOMAIN=https://preview-${{ steps.findPr.outputs.pr }}-ng-alain-delon.surge.sh | ||
echo "Deploy to $DEPLOY_DOMAIN" | ||
cp ./src/dist/browser/index.html ./src/dist/browser/404.html | ||
npx surge --project ./src/dist/browser --domain $DEPLOY_DOMAIN | ||
env: | ||
ACCESS_REPO: ${{ github.repository }} | ||
ACCESS_TOKEN: ${{ secrets.CI_TOKEN }} | ||
SURGE_LOGIN: ${{ secrets.SURGE_LOGIN }} | ||
SURGE_TOKEN: ${{ secrets.SURGE_TOKEN }} | ||
- name: 'Update comment on github' | ||
run: | | ||
export DEPLOY_DOMAIN=https://preview-${{ steps.findPr.outputs.pr }}-ng-alain-delon.surge.sh | ||
node ./scripts/github/comment.js "[Preview is ready!]($DEPLOY_DOMAIN)" | ||
env: | ||
ACCESS_REPO: ${{ github.repository }} | ||
ACCESS_TOKEN: ${{ secrets.CI_TOKEN }} | ||
PR_NUMBER: ${{ steps.findPr.outputs.pr }} | ||
- name: 'When failed' | ||
if: failure() | ||
run: node ./scripts/github/comment.js "[Preview Build Failed!](https://github.com/ng-alain/delon/actions/runs/${{ github.run_id }})" | ||
env: | ||
ACCESS_REPO: ${{ github.repository }} | ||
ACCESS_TOKEN: ${{ secrets.CI_TOKEN }} | ||
PR_NUMBER: ${{ steps.findPr.outputs.pr }} | ||
|
||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: '.nvmrc' | ||
cache: 'yarn' | ||
- uses: actions/cache@v3 | ||
with: | ||
path: ./node_modules | ||
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock', '**/*.patch') }} | ||
- name: Install node modules | ||
run: yarn install --frozen-lockfile | ||
- name: Test | ||
run: yarn run test | ||
- uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
directory: ./coverage/ | ||
files: cobertura-coverage.xml | ||
fail_ci_if_error: true | ||
verbose: true | ||
|
||
test-cli: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: '.nvmrc' | ||
cache: 'yarn' | ||
- uses: actions/cache@v3 | ||
with: | ||
path: ./node_modules | ||
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock', '**/*.patch') }} | ||
- name: Install node modules | ||
run: yarn install --frozen-lockfile | ||
- name: Test | ||
run: yarn run test:cli | ||
|
||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: '.nvmrc' | ||
cache: 'yarn' | ||
- uses: actions/cache@v3 | ||
with: | ||
path: ./node_modules | ||
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock', '**/*.patch') }} | ||
- name: Install node modules | ||
run: yarn install --frozen-lockfile | ||
- name: Check code lint | ||
run: yarn run lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.