mirror of
https://github.com/thangisme/notes.git
synced 2024-11-03 01:27:32 -05:00
73 lines
2.4 KiB
YAML
73 lines
2.4 KiB
YAML
on: [pull_request]
|
|
|
|
name: CI
|
|
|
|
jobs:
|
|
|
|
jekyll-latest:
|
|
name: Build Jekyll site (latest)
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- 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 && 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@v2
|
|
|
|
- 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 && jekyll build && bundle exec rake search:init"
|
|
|
|
assets:
|
|
name: Format and test CSS and JS
|
|
runs-on: ubuntu-latest
|
|
|
|
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:
|
|
node-version: '12.x'
|
|
- name: Extract branch name
|
|
shell: bash
|
|
run: echo "##[set-output name=branch;]$(echo ${GITHUB_HEAD_REF#refs/heads/})"
|
|
id: extract_branch
|
|
|
|
- run: npm install
|
|
- run: npm run format
|
|
- name: Add changed files
|
|
run: |
|
|
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 "extracted branch is ${{ steps.extract_branch.outputs.branch }}"
|
|
git checkout -b ${{ steps.extract_branch.outputs.branch }}
|
|
git status
|
|
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 }}
|
|
- run: npm test
|