feat(editor): Show building and done status in page title for AI buil… #10284
This file contains hidden or 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: Master (Build, Test, Lint)' | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - 1.x | |
| paths-ignore: | |
| - packages/@n8n/task-runner-python/** | |
| jobs: | |
| build-github: | |
| name: Build for Github Cache | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Setup and Build | |
| uses: ./.github/actions/setup-nodejs | |
| unit-test: | |
| name: Unit tests | |
| uses: ./.github/workflows/test-unit-reusable.yml | |
| strategy: | |
| matrix: | |
| node-version: [20.x, 22.x, 24.3.x] | |
| with: | |
| ref: ${{ github.sha }} | |
| nodeVersion: ${{ matrix.node-version }} | |
| collectCoverage: ${{ matrix.node-version == '22.x' }} | |
| secrets: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| lint: | |
| name: Lint | |
| uses: ./.github/workflows/test-linting-reusable.yml | |
| with: | |
| ref: ${{ github.sha }} | |
| notify-on-failure: | |
| name: Notify Slack on failure | |
| runs-on: ubuntu-latest | |
| needs: [unit-test, lint, build-github] | |
| steps: | |
| - name: Notify Slack on failure | |
| uses: act10ns/slack@44541246747a30eb3102d87f7a4cc5471b0ffb7d # v2.1.0 | |
| if: failure() | |
| with: | |
| status: ${{ job.status }} | |
| channel: '#alerts-build' | |
| webhook-url: ${{ secrets.SLACK_WEBHOOK_URL }} | |
| message: ${{ github.ref_name }} branch (build or test or lint) failed (${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}) |