mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-27 13:39:44 -08:00
61 lines
1.7 KiB
YAML
61 lines
1.7 KiB
YAML
|
name: Reusable units test workflow
|
||
|
|
||
|
on:
|
||
|
workflow_call:
|
||
|
inputs:
|
||
|
ref:
|
||
|
description: 'GitHub ref to test.'
|
||
|
required: false
|
||
|
type: string
|
||
|
default: 'master'
|
||
|
nodeVersion:
|
||
|
description: 'Version of node to use.'
|
||
|
required: false
|
||
|
type: string
|
||
|
default: '18.x'
|
||
|
cacheKey:
|
||
|
description: 'Cache key for modules and build artifacts.'
|
||
|
required: false
|
||
|
default: ''
|
||
|
type: string
|
||
|
|
||
|
jobs:
|
||
|
unit-test:
|
||
|
name: Unit tests
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3.5.3
|
||
|
with:
|
||
|
repository: n8n-io/n8n
|
||
|
ref: ${{ inputs.ref }}
|
||
|
|
||
|
- uses: pnpm/action-setup@v2.4.0
|
||
|
|
||
|
- name: Use Node.js ${{ inputs.nodeVersion }}
|
||
|
uses: actions/setup-node@v3.7.0
|
||
|
with:
|
||
|
node-version: ${{ inputs.nodeVersion }}
|
||
|
cache: pnpm
|
||
|
|
||
|
- name: Install dependencies
|
||
|
run: pnpm install --frozen-lockfile
|
||
|
|
||
|
- name: Build
|
||
|
if: ${{ inputs.cacheKey == '' }}
|
||
|
run: pnpm build
|
||
|
|
||
|
- name: Restore cached build artifacts
|
||
|
if: ${{ inputs.cacheKey != '' }}
|
||
|
uses: actions/cache/restore@v3.3.1
|
||
|
with:
|
||
|
path: ./packages/**/dist
|
||
|
key: ${{ inputs.cacheKey }}
|
||
|
|
||
|
- 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
|