Skip to content

chore(n8n): normalize package metadata #2

chore(n8n): normalize package metadata

chore(n8n): normalize package metadata #2

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
# Cancel in-progress runs for the same branch/PR to avoid wasting CI minutes.
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'npm'
- name: Install dependencies
run: 'npm ci'
- name: Run lint
run: 'npm run lint'
- name: Run typecheck
run: 'npm run typecheck'
- name: Run tests
run: 'npm test'
- name: Run build
run: 'npm run build'