chore: fix build error #2349
Workflow file for this run
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: lint | |
on: [push, pull_request] | |
concurrency: | |
group: ${{github.workflow}}-${{github.event_name}}-${{github.ref}} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
runs-on: macos-latest | |
if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
strategy: | |
matrix: | |
node-version: [18] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8.0 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'pnpm' | |
# postInstall will build the product | |
- name: Install dependencies and Build the product | |
run: pnpm install --no-frozen-lockfile | |
- name: Workflow failed alert | |
if: ${{ failure() }} | |
uses: actions-cool/maintain-one-comment@main | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
body: | | |
你好, @${{ github.event.pull_request.user.login }} CI 执行失败, 请点击 [Details] 按钮查看, 并根据日志修复 | |
Hello, @${{ github.event.pull_request.user.login }} CI run failed, please click the [Details] button for detailed log information and fix it. | |
<!-- Created by actions-cool/maintain-one-comment --> | |
emojis: 'eyes' | |
body-include: '<!-- Created by actions-cool/maintain-one-comment -->' |