Repolinter Results #23
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] | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| build: | |
| name: build | |
| runs-on: ubuntu-latest | |
| outputs: | |
| cache_key: ${{ steps.cache_key.outputs.cache_key }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - id: cache_key | |
| run: echo "cache_key=${{ hashFiles('**/**') }}-v1" >> "$GITHUB_OUTPUT" | |
| - uses: actions/cache@v3 | |
| id: cache | |
| with: | |
| path: ./app | |
| key: ${{ steps.cache_key.outputs.cache_key }} | |
| - if: steps.cache.outputs.cache-hit != true | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18 | |
| - if: steps.cache.outputs.cache-hit != true | |
| run: npm install | |
| working-directory: ./app | |
| - if: steps.cache.outputs.cache-hit != true | |
| env: | |
| ELEVENTY_ENV: production | |
| run: npm run build | |
| working-directory: ./app | |
| pa11y-scan: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - name: Use Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '18.x' | |
| - name: Install node dependencies | |
| run: npm install | |
| working-directory: ./app | |
| - name: Build site | |
| run: npm run build | |
| working-directory: ./app | |
| - name: Start server in background | |
| run: npx serve dist -l 8080 & | |
| working-directory: ./app | |
| - name: Wait for server | |
| run: sleep 5 | |
| - name: Accessibility scan | |
| run: npm run test:pa11y-ci | |
| working-directory: ./app | |
| validate_html: | |
| needs: [build] | |
| name: validate html | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - uses: actions/cache/restore@v3 | |
| with: | |
| key: ${{ needs.build.outputs.cache_key }} | |
| path: ./app | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18 | |
| - run: npm run test:html-validation | |
| working-directory: ./app | |
| check_links: | |
| needs: [build] | |
| name: Check all links | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - uses: actions/cache/restore@v3 | |
| with: | |
| key: ${{ needs.build.outputs.cache_key }} | |
| path: ./app | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18 | |
| - name: Start server in background | |
| run: npx serve dist -l 8080 & | |
| working-directory: ./app | |
| - name: Wait for server | |
| run: sleep 5 | |
| - name: Test all links | |
| run: npm run test:links | |
| working-directory: ./app | |
| lint: | |
| name: Run linter | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - name: Use Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18 | |
| - name: Install node dependencies | |
| run: npm install | |
| working-directory: ./app | |
| - name: Run eslint | |
| run: npm run lint | |
| working-directory: ./app |