Skip to content

Docs: add 1.1.3 changelog entry (#50) #81

Docs: add 1.1.3 changelog entry (#50)

Docs: add 1.1.3 changelog entry (#50) #81

Workflow file for this run

name: Website
on:
workflow_dispatch:
push:
paths:
- 'website/**'
- '.github/workflows/website.yml'
pull_request:
jobs:
build:
name: Website builds
runs-on: ubuntu-latest
defaults:
run:
working-directory: website
steps:
- name: Checkout code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup Node
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: '22'
- name: Install dependencies
run: npm ci
- name: Build site
run: npm run build