Skip to content

Upgrades/docs

Upgrades/docs #7969

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI
on:
push:
branches: ['master']
pull_request:
branches: ['master']
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
node-version: [24.x]
steps:
- uses: actions/checkout@v4
- name: Setup Node.js with Yarn
uses: ./.github/actions/setup-node-yarn
with:
node-version: ${{ matrix.node-version }}
- name: Lint
run: make lint
build:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
node-version: [24.x]
steps:
- uses: actions/checkout@v4
- name: Setup Node.js with Yarn
uses: ./.github/actions/setup-node-yarn
with:
node-version: ${{ matrix.node-version }}
- name: Build
run: make build
audit:
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
node-version: [24.x]
steps:
- uses: actions/checkout@v4
- name: Setup Node.js with Yarn
uses: ./.github/actions/setup-node-yarn
with:
node-version: ${{ matrix.node-version }}
- name: Security Audit
run: make audit
continue-on-error: true