Bump rexml from 3.3.2 to 3.3.3 in the bundler group (#388) #661
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
env: | |
FORCE_COLOR: 2 | |
NODE: 20 | |
RUBY: "3.2" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE }} | |
cache: npm | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ env.RUBY }} | |
bundler-cache: true | |
- run: java -version | |
- name: Install npm dependencies | |
run: npm ci | |
- name: Build the site | |
run: bundle exec jekyll build | |
- name: Run htmlproofer | |
run: bundle exec htmlproofer ./_site --allow-hash-href --assume-extension --check-external-hash --check-favicon --check-img-http --check-opengraph --disable-external --empty-alt-ignore --internal-domains sustainoss.org | |
- name: Run tests | |
run: npm test | |
- name: Upload docs | |
uses: actions/upload-artifact@v4 | |
if: github.repository == 'sustainers/sustainers.github.io' && github.ref == 'refs/heads/main' | |
with: | |
name: docs | |
path: ./_site/ | |
if-no-files-found: error | |
deploy: | |
runs-on: ubuntu-latest | |
needs: test | |
if: github.repository == 'sustainers/sustainers.github.io' && github.ref == 'refs/heads/main' | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Download docs | |
uses: actions/download-artifact@v4 | |
with: | |
name: docs | |
path: ./_site/ | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
allow_empty_commit: false | |
personal_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_branch: gh-pages | |
publish_dir: ./_site/ |