Merge pull request #377 from thigg/patch-2 #359
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- master | |
name: Master branch CI | |
jobs: | |
jekyll-latest: | |
name: Build Jekyll site (latest) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Build the site in the jekyll/builder container | |
run: | | |
docker run --rm \ | |
--volume="${{ github.workspace }}:/srv/jekyll" \ | |
jekyll/builder:latest /bin/bash -c "gem install bundler && chmod -R 777 /srv/jekyll && bundle install && bundle exec jekyll build && bundle exec rake search:init" | |
jekyll-3-8-5: | |
name: Build Jekyll site (v3.8.5) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Build the site in the jekyll/builder container | |
run: | | |
docker run --rm \ | |
--volume="${{ github.workspace }}:/srv/jekyll" \ | |
jekyll/builder:3.8.5 /bin/bash -c "gem install bundler && chmod -R 777 /srv/jekyll && bundle install && bundle exec jekyll build && bundle exec rake search:init" | |
assets: | |
name: Format and test CSS and JS | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- run: npm install | |
- run: npm test |