chore(deps): update dependency core-js to ~3.39.0 (#3891) #136
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: Ecosystem CI | |
on: | |
push: | |
branches: [main] | |
merge_group: | |
workflow_dispatch: | |
inputs: | |
branch: | |
description: 'The branch of the Ecosystem CI run' | |
required: true | |
default: 'main' | |
jobs: | |
ecosystem_ci_notify: | |
name: Run Ecosystem CI With Notify | |
runs-on: ubuntu-latest | |
if: github.repository == 'web-infra-dev/rsbuild' && github.event_name != 'workflow_dispatch' && !startsWith(github.event.head_commit.message, 'docs') | |
steps: | |
- name: Run Ecosystem CI with notify | |
id: eco_ci | |
continue-on-error: true | |
uses: convictional/[email protected] | |
with: | |
owner: "rspack-contrib" | |
repo: "rsbuild-ecosystem-ci" | |
workflow_file_name: "ecosystem-ci-from-commit.yml" | |
github_token: ${{ secrets.REPO_SCOPED_TOKEN }} | |
ref: "main" | |
client_payload: '{"commitSHA":"${{ github.sha }}","updateComment":true,"repo":"web-infra-dev/rsbuild","suite":"-","suiteRefType":"precoded","suiteRef":"precoded"}' | |
- if: steps.eco_ci.outcome == 'failure' | |
uses: actions/checkout@v4 | |
- if: steps.eco_ci.outcome == 'failure' | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Send Failure Notification | |
if: steps.eco_ci.outcome == 'failure' | |
shell: bash | |
run: ./scripts/alert/lark.js | |
env: | |
TITLE: Rsbuild Ecosystem CI failed | |
DESCRIPTION: | | |
commitID: [${{github.sha}}](${{github.server_url}}/${{github.repository}}/commit/${{github.sha}}) | |
URL: ${{github.server_url}}/${{github.repository}}/actions/runs/${{github.run_id}} | |
LARK_WEBHOOK_URL: ${{secrets.LARK_WEBHOOK_URL}} | |
ecosystem_ci: | |
name: Run Ecosystem CI | |
runs-on: ubuntu-latest | |
if: github.repository == 'web-infra-dev/rsbuild' && github.event_name == 'workflow_dispatch' | |
steps: | |
- name: Run Ecosystem CI | |
id: eco_ci | |
uses: convictional/[email protected] | |
with: | |
owner: "rspack-contrib" | |
repo: "rsbuild-ecosystem-ci" | |
workflow_file_name: "ecosystem-ci-selected.yml" | |
github_token: ${{ secrets.REPO_SCOPED_TOKEN }} | |
ref: "main" | |
client_payload: '{"ref":"${{ github.event.inputs.branch }}","repo":"web-infra-dev/rsbuild","suite":"-","suiteRefType":"precoded","suiteRef":"precoded"}' |