notes/.github/workflows/ci.yml

49 lines
1.2 KiB
YAML
Raw Normal View History

2020-04-24 01:48:44 +00:00
on: [push, pull_request]
name: CI
jobs:
2020-04-23 20:12:44 +00:00
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" \
2020-04-23 21:23:50 +00:00
jekyll/builder:latest /bin/bash -c "gem install bundler && chmod -R 777 /srv/jekyll && jekyll build && bundle exec just-the-docs rake search:init"
2020-04-23 20:16:43 +00:00
jekyll-3-8-5:
2020-04-23 20:12:44 +00:00
name: Build Jekyll site (v3.8.5)
2020-04-23 20:01:12 +00:00
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" \
2020-04-23 21:23:50 +00:00
jekyll/builder:3.8.5 /bin/bash -c "gem install bundler && chmod -R 777 /srv/jekyll && jekyll build && bundle exec just-the-docs rake search:init"
2020-04-23 20:16:43 +00: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:
2020-04-24 02:50:37 +00:00
node-version: 10.x
- name: npm install, build, and test
run: |
npm install
npm test