Skip to content

Auto-generated code for main #4479

Auto-generated code for main

Auto-generated code for main #4479

Workflow file for this run

---
name: Node CI
on:
pull_request: {}
jobs:
paths-filter:
name: Detect files changed
runs-on: ubuntu-latest
outputs:
src-only: "${{ steps.changes.outputs.src-only }}"
steps:
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
with:
persist-credentials: false
- uses: dorny/paths-filter/@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
id: changes
with:
filters: |
src-only:
- '!(**/*.{md,asciidoc,txt}|*.{md,asciidoc,txt}|{docs,.buildkite,scripts}/**/*|catalog-info.yaml)'
- '.github/workflows/**'
test:
name: Test
runs-on: ${{ matrix.os }}
needs: paths-filter
env:
CODE_CHANGED: ${{ needs.paths-filter.outputs.src-only }}
strategy:
fail-fast: false
matrix:
node-version: [20.x, 22.x, 24.x]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
with:
persist-credentials: false
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: |
npm install
- name: Lint
shell: bash
run: |
[ "$CODE_CHANGED" = "true" ] && npm run lint || exit 0
- name: Unit test
shell: bash
run: |
[ "$CODE_CHANGED" = "true" ] && npm run test:unit || exit 0
- name: ECMAScript module test
shell: bash
run: |
[ "$CODE_CHANGED" = "true" ] && npm run test:esm || exit 0
license:
name: License check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
with:
persist-credentials: false
- name: Use Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 24.x
- name: Install
run: |
npm install
- name: License checker
run: |
npm run license-checker
- name: SPDX header check
run: npm run license-header
test-bun:
name: Test Bun
runs-on: ${{ matrix.os }}
needs: paths-filter
env:
CODE_CHANGED: ${{ needs.paths-filter.outputs.src-only }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
with:
persist-credentials: false
- name: Use Bun
uses: oven-sh/setup-bun@735343b667d3e6f658f44d0eca948eb6282f2b76 # v2
- name: Install
run: |
bun install
- name: Lint
shell: bash
run: |
[ "$CODE_CHANGED" = "true" ] && bun run lint || exit 0
- name: Unit test
shell: bash
run: |
[ "$CODE_CHANGED" = "true" ] && bun run test:unit-bun || exit 0
- name: ECMAScript module test
shell: bash
run: |
[ "$CODE_CHANGED" = "true" ] && bun run test:esm || exit 0