mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
968b733fd6
* ci: Start supporting Node.js 18 Node.js 18 became the active LTS on 2022-10-25, and Node.js 16 went into maintenance mode. https://github.com/nodejs/Release#release-schedule We should also slowly deprecate node 16 support, [as support for it is ends much earlier now, due to support for openssl 1.1.1 ending](https://nodejs.org/en/blog/announcements/nodejs16-eol). * Remove hashing algorithms that are not available in newer node.js/openssl - RSA-MD4 - RSA-MDC2 - md4 - md4WithRSAEncryption - mdc2 - mdc2WithRSA * in e2e tests, resolve `localhost` to ipv4 instead of ipv6
136 lines
3.7 KiB
YAML
136 lines
3.7 KiB
YAML
name: Build, unit/smoke test and lint branch
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
install:
|
|
name: Install & Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
repository: n8n-io/n8n
|
|
ref: ${{ inputs.branch }}
|
|
|
|
- uses: pnpm/action-setup@v2.2.4
|
|
|
|
- name: Use Node.js 18
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18.x
|
|
cache: pnpm
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Build
|
|
run: pnpm build
|
|
|
|
- name: Cache build artifacts
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
/github/home/.cache
|
|
/github/home/.pnpm-store
|
|
./node_modules
|
|
./packages
|
|
key: ${{ github.sha }}-base:18-test-lint
|
|
|
|
unit-test:
|
|
name: Unit tests
|
|
runs-on: ubuntu-latest
|
|
needs: install
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
repository: n8n-io/n8n
|
|
ref: ${{ inputs.branch }}
|
|
|
|
- name: Restore cached build artifacts
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
/github/home/.cache
|
|
/github/home/.pnpm-store
|
|
./node_modules
|
|
./packages
|
|
key: ${{ github.sha }}-base:18-test-lint
|
|
|
|
- uses: pnpm/action-setup@v2.2.4
|
|
|
|
- name: Use Node.js 18
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18.x
|
|
cache: pnpm
|
|
|
|
- name: Test
|
|
run: pnpm test
|
|
|
|
- name: Upload coverage to Codecov
|
|
uses: codecov/codecov-action@v3
|
|
with:
|
|
files: packages/@n8n/client-oauth2/coverage/cobertura-coverage.xml,packages/cli/coverage/cobertura-coverage.xml,packages/core/coverage/cobertura-coverage.xml,packages/design-system/coverage/cobertura-coverage.xml,packages/editor-ui/coverage/cobertura-coverage.xml,packages/nodes-base/coverage/cobertura-coverage.xml,packages/workflow/coverage/cobertura-coverage.xml
|
|
|
|
lint:
|
|
name: Lint changes
|
|
runs-on: ubuntu-latest
|
|
needs: install
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
repository: n8n-io/n8n
|
|
ref: ${{ inputs.branch }}
|
|
|
|
- name: Restore cached build artifacts
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
/github/home/.cache
|
|
/github/home/.pnpm-store
|
|
./node_modules
|
|
./packages
|
|
key: ${{ github.sha }}-base:18-test-lint
|
|
|
|
- uses: pnpm/action-setup@v2.2.4
|
|
|
|
- name: Use Node.js 18
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18.x
|
|
cache: pnpm
|
|
|
|
- name: Fetch base branch for `git diff`
|
|
run: git fetch origin ${{ github.event.pull_request.base.ref }}:${{ github.event.pull_request.base.ref }}
|
|
|
|
- name: Run ESLint on changes only
|
|
env:
|
|
ESLINT_PLUGIN_DIFF_COMMIT: ${{ github.event.pull_request.base.ref }}
|
|
run: pnpm lint
|
|
|
|
smoke-test:
|
|
name: E2E [Electron/Node 18]
|
|
uses: ./.github/workflows/e2e-reusable.yml
|
|
with:
|
|
branch: ${{ github.event.pull_request.base.ref }}
|
|
user: ${{ github.event.inputs.user || 'PR User' }}
|
|
spec: ${{ github.event.inputs.spec || 'e2e/0-smoke.cy.ts' }}
|
|
record: false
|
|
parallel: false
|
|
pr_number: ${{ github.event.number }}
|
|
containers: '[1]'
|
|
secrets:
|
|
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
|
|
|
|
checklist_job:
|
|
runs-on: ubuntu-latest
|
|
name: Checklist job
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v1
|
|
- name: Checklist
|
|
uses: wyozi/contextual-qa-checklist-action@master
|
|
with:
|
|
gh-token: ${{ secrets.GITHUB_TOKEN }}
|
|
comment-footer: Make sure to check off this list before asking for review.
|