Skip to content

Update Blogs for 2024 and 2025 #3

Update Blogs for 2024 and 2025

Update Blogs for 2024 and 2025 #3

Workflow file for this run

name: test-build
on:
pull_request:
branches:
- main
# Review gh actions docs if you want to further define triggers, paths, etc
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
jobs:
test-build:
name: test-build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Test build website
run: npm run build