Merge branch 'preview-fixes' into master-cdn #229
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
name: Build | |
on: | |
push: | |
branches: | |
- master | |
- master-cdn | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: "0" | |
- name: Install dependencies | |
uses: pnpm/[email protected] | |
with: | |
version: latest | |
run_install: true | |
- name: Type check | |
run: pnpm run type | |
- name: ESLint check | |
run: pnpm run lint | |
- name: Build core | |
run: pnpm run build-core | |
- name: Build features | |
run: | | |
cd registry | |
pnpm install | |
cd ../ | |
pnpm run build-features | |
- name: Build GitHub config | |
run: pnpm run build-github-config | |
- name: Git commit | |
id: commit | |
run: | | |
git config --local user.email github-actions[bot]@users.noreply.github.com | |
git config --local user.name github-actions[bot] | |
git config --global core.autocrlf true | |
git config --global core.safecrlf false | |
git add --all | |
git commit -m "CI build" | |
continue-on-error: true | |
- name: Git push | |
uses: ad-m/github-push-action@master | |
if: ${{ steps.commit.outcome == 'success' }} | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} | |
- name: Log | |
if: ${{ steps.commit.outcome != 'success' }} | |
run: echo Nothing to commit. |