Skip to content

deleteme: debug pipes #36

deleteme: debug pipes

deleteme: debug pipes #36

Workflow file for this run

name: Node build

Check failure on line 1 in .github/workflows/build-node.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-node.yml

Invalid workflow file

(Line: 50, Col: 9): Unexpected value 'environment'
on:
push:
branches:
- main
paths-ignore:
- '**.md'
- docs/**
- examples/**
- .github/**
- '!.github/workflows/build-node.yml'
pull_request:
branches:
- main
paths-ignore:
- '**.md'
- docs/**
- examples/**
- .github/**
- '!.github/workflows/build-node.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
strategy:
matrix:
node-version: ['18.x', '20.x', '22.x', '24.x']
runs-on:
- ubuntu-latest
continue-on-error: true
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install, build, lint, test
environment:
NODEV=${{ matrix.node-version }}
run: |
npm ci
npm run build
npm test
npm run lint