Skip to content

chore(deps): bump bootsnap from 1.24.5 to 1.24.6 in /website in the regular-updates group across 1 directory #621

chore(deps): bump bootsnap from 1.24.5 to 1.24.6 in /website in the regular-updates group across 1 directory

chore(deps): bump bootsnap from 1.24.5 to 1.24.6 in /website in the regular-updates group across 1 directory #621

Workflow file for this run

name: Pull request
on:
pull_request:
jobs:
tests:
name: Run all tests
uses: ./.github/workflows/tests.yml
# Runs a build of the docs website as a smoke test
# to check there's no build failures.
docs-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020
with:
node-version-file: .nvmrc
# Setup docs site
- uses: ruby/setup-ruby@003a5c4d8d6321bd302e38f6f0ec593f77f06600 # v1.319.0
with:
ruby-version: "4.0.5"
bundler-cache: true
working-directory: website
# Install dependencies
- run: npm ci
working-directory: website
# Run lint checks against docs code
- run: bundle exec rubocop --format progress --format github
working-directory: website
- run: bundle exec erb_lint --lint-all
working-directory: website
# Run a static build to confirm that assets compile correctly
- run: ./bin/static-build
working-directory: website