2019-08-09 14:55:53 -04:00
|
|
|
on: [push]
|
|
|
|
|
|
|
|
name: CI
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
jekyll:
|
|
|
|
name: Build Jekyll site
|
|
|
|
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 "chmod 777 /srv/jekyll && jekyll build"
|
|
|
|
|
2020-04-23 16:01:12 -04:00
|
|
|
search:
|
|
|
|
name: Test search rake command
|
|
|
|
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 777 /srv/jekyll && jekyll build && bundle exec just-the-docs rake search:init"
|
|
|
|
|
2019-08-09 14:55:53 -04:00
|
|
|
css:
|
|
|
|
name: Stylelint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- uses: actions/checkout@master
|
|
|
|
|
|
|
|
- name: Use Node.js 10.x
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
version: 10.x
|
|
|
|
|
|
|
|
- name: npm install, build, and test
|
|
|
|
run: |
|
|
|
|
npm install
|
|
|
|
npm test
|