Skip to content

Fix CI: update npm-grunt.yml to use Node 20 and modern actions #9

Fix CI: update npm-grunt.yml to use Node 20 and modern actions

Fix CI: update npm-grunt.yml to use Node 20 and modern actions #9

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build site
run: yarn docs:build