Update swagger-ui-dist to ^5.30.2 #1518
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: Build PRs for LoopBack.io site | |
| on: | |
| pull_request: | |
| branches: | |
| - gh-pages | |
| workflow_dispatch: | |
| branches: | |
| - gh-pages | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout 🛎️ | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| persist-credentials: false | |
| - name: Use Node.js 22 | |
| uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 | |
| with: | |
| node-version: 22.21.1 | |
| - name: Set up Ruby 3.2 | |
| uses: ruby/setup-ruby@d5126b9b3579e429dd52e51e68624dda2e05be25 # v1.267.0 | |
| with: | |
| ruby-version: 3.2 | |
| - name: Install and Build 🔧 | |
| run: | | |
| bundle install | |
| npm install | |
| npm ls @loopback/docs 2>/dev/null || true | |
| npm run build |