Skip to content

Bump actions/upload-pages-artifact from 1 to 2 #55

Bump actions/upload-pages-artifact from 1 to 2

Bump actions/upload-pages-artifact from 1 to 2 #55

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@v3
- 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@v3
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