Skip to content

Bump actions/configure-pages from 3 to 4 #62

Bump actions/configure-pages from 3 to 4

Bump actions/configure-pages from 3 to 4 #62

Workflow file for this run

name: Test build
on:
workflow_dispatch: # enable run button on github.com
pull_request:
jobs:
build:
name: Test Jekyll build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.0"
bundler-cache: true
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"
cache: "npm"
cache-dependency-path: "./package-lock.json"
- name: Install dependencies
run: npm install
- name: Build site
run: npm run test
env:
CI: true