Skip to content
Snippets Groups Projects
ci.yml 1.2 KiB
Newer Older
Patrick Marsceill's avatar
Patrick Marsceill committed
on: [push, pull_request]
Patrick Marsceill's avatar
Patrick Marsceill committed
  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" \
Patrick Marsceill's avatar
Patrick Marsceill committed
        jekyll/builder:latest /bin/bash -c "gem install bundler && chmod -R 777 /srv/jekyll && jekyll build && bundle exec just-the-docs rake search:init"
Patrick Marsceill's avatar
Patrick Marsceill committed

  jekyll-3-8-5:
Patrick Marsceill's avatar
Patrick Marsceill committed
    name: Build Jekyll site (v3.8.5)
Patrick Marsceill's avatar
Patrick Marsceill committed
    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" \
Patrick Marsceill's avatar
Patrick Marsceill committed
        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"
Patrick Marsceill's avatar
Patrick Marsceill committed

  css:
    name: Stylelint
    runs-on: ubuntu-latest
    steps:
    
    - uses: actions/checkout@master

    - name: Use Node.js 10.x
      uses: actions/setup-node@v1
      with:
Patrick Marsceill's avatar
Patrick Marsceill committed
        node-version: 10.x

    - name: npm install, build, and test
      run: |
        npm install
        npm test