release: bump version to 1.1.1 #8
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| env: | |
| ASTRO_TELEMETRY_DISABLED: '1' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Validate content | |
| run: npm run validate:content | |
| - name: Build site | |
| run: npm run build | |
| - name: Smoke test built routes | |
| run: npm run test:smoke | |
| - name: Verify SEO and locale alternates | |
| run: npm run test:seo |