14 lines
416 B
YAML
14 lines
416 B
YAML
on: [push]
|
|
jobs:
|
|
jekyll:
|
|
runs-on: node20
|
|
container:
|
|
image: ubuntu:latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: https://github.com/ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: '3.3' # Not needed with a .ruby-version file
|
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
|
- run: bundle install
|
|
- run: jekyll help
|