mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
* feat: Added turborepo setup. * feat: Updated nodes and credentials loading. * feat: Removed remaining lerna references. * fix: Updated npm run bootstrap command. * feat: Added CI step for installing latest npm. * chore: Removed lerna config. * feat: Added gulp to global ci packages. * fix: Set node as moduleResolution target in workflow. Fixed CI. * fix: Added turborepo installation to the n8n-custom docker image. * fix: Updated copied docker files for n8n-custom. * fix: Added git as dependency in n8n-custom dockerfile. * fix: Changed npm install command in n8n-custom. * 📦 Update `package-lock.json` Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
31 lines
558 B
YAML
31 lines
558 B
YAML
name: Node CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
timeout-minutes: 30
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [14.x, 16.x]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
- name: npm install, build, and test
|
|
run: |
|
|
npm install -g npm@latest
|
|
npm install
|
|
npm run build --if-present
|
|
npm test
|
|
npm run lint
|
|
env:
|
|
CI: true
|