Skip to content

fix/37-list-missing-filter-params #49

fix/37-list-missing-filter-params

fix/37-list-missing-filter-params #49

Workflow file for this run

name: Node build
on:
push:
branches:
- main
paths-ignore:
- '**.md'
- .github/**
- '!.github/workflows/build-node.yml'
pull_request:
branches:
- main
paths-ignore:
- '**.md'
- .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']
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'
- run: npm ci
- run: npm run build
- run: npm run test
- run: npm run lint