Skip to content

ci(github-actions): bump actions/setup-node from 5 to 6 #200

ci(github-actions): bump actions/setup-node from 5 to 6

ci(github-actions): bump actions/setup-node from 5 to 6 #200

Workflow file for this run

name: "Build and validate the content"
on:
pull_request:
branches: [main]
env:
HUSKY_SKIP: true
jobs:
build:
runs-on: ubuntu-latest
if: "! contains(github.event.head_commit.message, '[skip ci]')"
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Build and validate all steps
run: node tools/builder