Update code to attempt to fix race condition with js #168
Workflow file for this run
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: Broken Link Checker | |
on: | |
push: | |
paths: | |
- front-end/** | |
- .github/** | |
jobs: | |
broken-link-checker: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: 'front-end' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18' | |
cache: 'npm' | |
cache-dependency-path: front-end/package-lock.json | |
- name: install dependencies | |
run: npm ci | |
- name: Run broken link checker | |
run: npm run link-checker:ci |