Bump @babel/preset-env from 7.24.4 to 7.24.5 #286
Workflow file for this run
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: Build docs/ folder | |
on: pull_request | |
jobs: | |
test: | |
name: Build docs/ folder | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-ruby@v1 | |
- run: | | |
cd docs | |
gem install bundler --version '~> 1' | |
bundle install | |
bundle exec jekyll build | |
- run: | | |
git add -A # Make sure new files are accounted | |
git diff --exit-code --cached # Expect no changes in git |