feat(posts): TVJS scroll performance enhancement #1383
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: Continous Integration | |
on: | |
# Check that the static website is buildable for every PR | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
name: 'Build 📦' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-ruby@v1 | |
with: | |
ruby-version: '3' | |
- run: gem install bundler | |
- run: bundle install --jobs 4 --retry 3 | |
- run: bundle exec jekyll build |