Skip to content

chore(deps): update github actions dependencies (major) #1386

chore(deps): update github actions dependencies (major)

chore(deps): update github actions dependencies (major) #1386

Workflow file for this run

name: Build website using Astro
on:
workflow_dispatch:
push:
branches:
- main
paths-ignore:
- 'README.md'
- 'LICENSE'
- '.gitignore'
- '.gitattributes'
- '.editorconfig'
pull_request:
branches:
- main
paths-ignore:
- 'README.md'
- 'LICENSE'
- '.gitignore'
- '.gitattributes'
- '.editorconfig'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone this repo
uses: actions/checkout@v7
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version-file: .node-version
cache: npm
- name: Install dependencies
run: npm ci
- name: Check Astro project
run: npm run check
- name: Check content
run: npm run check:content
- name: Check links
run: npm run check:links
- name: Build Astro site
run: npm run build
- name: Smoke test build output
run: npm run smoke
- name: Audit dependencies
run: npm run audit:known
- name: Check outdated dependencies
run: npm outdated