Bump activesupport from 7.2.2 to 8.0.0 #2015
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 only | |
on: | |
push: | |
branches-ignore: | |
- main | |
- staging | |
workflow_dispatch: | |
jobs: | |
build: | |
name: "Build website" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
id: checkout | |
# Use GitHub Node Action to install node_modules | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 16 | |
- run: npm install | |
# Use GitHub Jekyll Action to build website | |
- uses: helaili/jekyll-action@v2 | |
id: build | |
with: | |
jekyll_src: "." | |
jekyll_env: development | |
pre_build_commands: "apk add --update vips uglify-js" | |
build_only: true | |
jekyll_build_options: "--config _config.yml,_config.staging.yml" |