2022-08-26 01:27:04 -07:00
|
|
|
name: Test Master
|
2019-12-24 16:25:44 -08:00
|
|
|
|
2022-08-26 01:27:04 -07:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2019-12-24 16:25:44 -08:00
|
|
|
|
|
|
|
jobs:
|
2023-08-02 08:38:35 -07:00
|
|
|
install-and-build:
|
2019-12-24 16:25:44 -08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
2022-03-16 02:32:49 -07:00
|
|
|
timeout-minutes: 30
|
|
|
|
|
2019-12-24 16:25:44 -08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-11-28 09:04:30 -08:00
|
|
|
node-version: [18.x, 20.x]
|
2019-12-24 16:25:44 -08:00
|
|
|
|
|
|
|
steps:
|
2024-01-26 02:26:30 -08:00
|
|
|
- uses: actions/checkout@v4.1.1
|
2022-09-21 01:50:15 -07:00
|
|
|
|
2024-02-02 00:47:58 -08:00
|
|
|
- run: corepack enable
|
2022-08-19 06:34:02 -07:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
2024-01-26 02:26:30 -08:00
|
|
|
uses: actions/setup-node@v4.0.1
|
2022-08-19 06:34:02 -07:00
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
2023-08-02 08:38:35 -07:00
|
|
|
cache: pnpm
|
2022-09-21 01:50:15 -07:00
|
|
|
|
2022-11-09 08:32:05 -08:00
|
|
|
- name: Install dependencies
|
|
|
|
run: pnpm install --frozen-lockfile
|
2022-09-21 01:50:15 -07:00
|
|
|
|
|
|
|
- name: Build
|
2022-11-09 08:32:05 -08:00
|
|
|
run: pnpm build
|
2022-09-21 01:50:15 -07:00
|
|
|
|
2023-08-02 08:38:35 -07:00
|
|
|
- name: Cache build artifacts
|
2024-01-26 02:26:30 -08:00
|
|
|
uses: actions/cache/save@v4.0.0
|
2023-08-02 08:38:35 -07:00
|
|
|
with:
|
2023-08-22 02:21:16 -07:00
|
|
|
path: ./packages/**/dist
|
2023-08-02 08:38:35 -07:00
|
|
|
key: ${{ github.sha }}-base:${{ matrix.node-version }}-test-lint
|
|
|
|
|
|
|
|
unit-test:
|
|
|
|
name: Unit tests
|
2023-09-13 06:24:02 -07:00
|
|
|
uses: ./.github/workflows/units-tests-reusable.yml
|
2023-08-02 08:38:35 -07:00
|
|
|
needs: install-and-build
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-11-28 09:04:30 -08:00
|
|
|
node-version: [18.x, 20.x]
|
2023-09-13 06:24:02 -07:00
|
|
|
with:
|
|
|
|
ref: ${{ inputs.branch }}
|
|
|
|
nodeVersion: ${{ matrix.node-version }}
|
2023-11-07 05:19:39 -08:00
|
|
|
cacheKey: ${{ github.sha }}-base:${{ matrix.node-version }}-test-lint
|
|
|
|
collectCoverage: true
|
2023-03-10 07:53:05 -08:00
|
|
|
|
2023-08-02 08:38:35 -07:00
|
|
|
lint:
|
|
|
|
name: Lint changes
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: install-and-build
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-11-28 09:04:30 -08:00
|
|
|
node-version: [18.x, 20.x]
|
2023-08-02 08:38:35 -07:00
|
|
|
steps:
|
2024-01-26 02:26:30 -08:00
|
|
|
- uses: actions/checkout@v4.1.1
|
2023-08-02 08:38:35 -07:00
|
|
|
with:
|
|
|
|
repository: n8n-io/n8n
|
|
|
|
ref: ${{ inputs.branch }}
|
|
|
|
|
2024-02-02 00:47:58 -08:00
|
|
|
- run: corepack enable
|
2023-08-02 08:38:35 -07:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
2024-01-26 02:26:30 -08:00
|
|
|
uses: actions/setup-node@v4.0.1
|
2023-08-02 08:38:35 -07:00
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
cache: pnpm
|
|
|
|
|
2023-08-22 02:21:16 -07:00
|
|
|
- name: Install dependencies
|
|
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
|
|
|
|
- name: Restore cached build artifacts
|
2024-01-26 02:26:30 -08:00
|
|
|
uses: actions/cache/restore@v4.0.0
|
2023-08-22 02:21:16 -07:00
|
|
|
with:
|
|
|
|
path: ./packages/**/dist
|
|
|
|
key: ${{ github.sha }}-base:${{ matrix.node-version }}-test-lint
|
|
|
|
|
2022-10-10 10:50:26 -07:00
|
|
|
- name: Lint
|
2022-11-11 07:07:50 -08:00
|
|
|
env:
|
|
|
|
CI_LINT_MASTER: true
|
2022-11-09 08:32:05 -08:00
|
|
|
run: pnpm lint
|
2022-11-17 09:52:03 -08:00
|
|
|
|
2023-08-02 08:38:35 -07:00
|
|
|
notify-on-failure:
|
|
|
|
name: Notify Slack on failure
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: [unit-test, lint]
|
|
|
|
steps:
|
2022-11-17 09:52:03 -08:00
|
|
|
- name: Notify Slack on failure
|
|
|
|
uses: act10ns/slack@v2.0.0
|
|
|
|
if: failure()
|
|
|
|
with:
|
|
|
|
status: ${{ job.status }}
|
2023-11-13 04:35:21 -08:00
|
|
|
channel: '#alerts-build'
|
2022-11-17 09:52:03 -08:00
|
|
|
webhook-url: ${{ secrets.SLACK_WEBHOOK_URL }}
|
2022-12-20 05:13:24 -08:00
|
|
|
message: Master branch (build or test or lint) failed (${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})
|