chore(aws-api-mcp-server): upgrade AWS CLI to v1.42.68 #1598
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: Check that GitHub Pages Builds | |
| permissions: {} | |
| on: | |
| push: | |
| jobs: | |
| build: | |
| name: Build Docusaurus | |
| permissions: | |
| contents: read | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| cache-dependency-path: 'docusaurus/package-lock.json' | |
| - name: Install dependencies | |
| run: cd docusaurus && npm ci | |
| - name: Build website | |
| run: cd docusaurus && npm run build |