chore(deps-dev): bump @testing-library/jest-dom from 6.9.1 to 7.0.1 #645
Workflow file for this run
This file contains hidden or 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: 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@3d3c42e5aac5ba805825da76410c181273ba90b1 | |
| - 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 |