Merge branch 'main' into develop #117
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: π§ͺ CI | |
on: | |
push: | |
branches: | |
- develop | |
- release/** | |
- hotfix/** | |
- support/** | |
- feature/** | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
CI: | |
name: CI | |
if: ${{ github.repository_owner == 'guotingchao' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: π’ Setup node | |
id: setup-node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: latest | |
- name: β¬οΈ Checkout | |
id: checkout | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: π₯‘ Setup pnpm | |
id: setup-pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: latest | |
run_install: false | |
- name: π Get pnpm store directory | |
id: get-pnpm-cache-dir | |
run: echo "pnpm_cache_dir=$(pnpm store path)" >> "$GITHUB_OUTPUT" | |
- name: π Cache pnpm modules | |
uses: actions/cache@v4 | |
id: pnpm-cache | |
with: | |
path: ${{ steps.get-pnpm-cache-dir.outputs.pnpm_cache_dir }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: 𧩠Install Dependencies | |
id: install-dependencies | |
run: pnpm install | |
- name: π§ͺ Test | |
run: pnpm run test | |
- name: π¦ Build | |
if: github.ref_name == 'develop' | |
run: pnpm run build | |
- name: π¦ Create Pull Request | |
if: github.ref_name == 'develop' | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} | |
base: main | |
title: "π€ Pull Request form ${{github.ref_name}}" | |
body: "created by Actions Robot π€" | |
commit-message: "Pull Request ${{ github.ref_name }} into main" | |
labels: "CI" | |
assignees: "guotingchao" |