notes/.github/workflows/ci.yml

72 lines
2.3 KiB
YAML
Raw Normal View History

2020-04-23 22:55:09 -04:00
on: [pull_request]
name: CI
jobs:
2020-04-23 16:12:44 -04: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 17:23:50 -04: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 16:16:43 -04:00
jekyll-3-8-5:
2020-04-23 16:12:44 -04:00
name: Build Jekyll site (v3.8.5)
2020-04-23 16:01:12 -04: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 17:23:50 -04: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 16:16:43 -04:00
2020-04-24 10:57:20 -04:00
assets:
name: Format and test CSS and JS
runs-on: ubuntu-latest
2020-04-24 00:20:41 -04:00
steps:
- uses: actions/checkout@v2
# Using this so the this instead of GITHUB_TOKEN so that this workflow can trigger another
with:
token: ${{ secrets.PAT }}
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
2020-04-24 00:20:41 -04:00
node-version: '12.x'
- name: Extract branch name
shell: bash
2020-04-24 11:25:28 -04:00
run: echo "##[set-output name=branch;]$(echo ${GITHUB_HEAD_REF#refs/heads/})"
2020-04-24 00:20:41 -04:00
id: extract_branch
2020-04-24 00:11:14 -04:00
- run: npm install
- run: npm run format
- name: Add changed files
run: |
2020-04-24 00:11:14 -04:00
echo "https://$GITHUB_ACTOR:$GITHUB_TOKEN@github.com/$GITHUB_REPOSITORY.git"
git config --global user.email $GITHUB_ACTOR@users.noreply.github.com
git config --global user.name $GITHUB_ACTOR
echo "branch is ${{ steps.extract_branch.outputs.branch }}"
git checkout ${{ steps.extract_branch.outputs.branch }}
git add .
- name: Are there any updates?
shell: bash
run: echo "##[set-output name=status]$(git status -s)"
id: is_dirty
- name: Commit files
if: steps.is_dirty.outputs.status
run: |
echo ${{ steps.is_dirty.outputs.status }}
git commit -m "🎨 Prettier"
git push --force --set-upstream "https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" ${{ steps.extract_branch.outputs.branch }}
2020-04-24 10:57:20 -04:00
- run: npm test