Update Linters #2263
This file contains 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: test | |
on: | |
pull_request: | |
branches: [master] | |
push: | |
branches: [master] | |
jobs: | |
test-urls: | |
name: Test URLs | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
command: | |
- test:blog-urls | |
- test:docs-urls | |
- test:web-urls | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 | |
- name: Set up Node.js | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version: 20 | |
check-latest: true | |
cache: npm | |
- name: Build and start test server | |
run: | | |
npm ci --no-audit | |
npm run build | |
npm run serve & | |
- name: Test URL | |
run: npm run ${{ matrix.command }} |