Fix ToC link hover #134
Workflow file for this run
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: Ensure the build is passing | |
| on: | |
| pull_request | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Install NPM Dependencies | |
| run: npm ci | |
| - name: Run the build to ensure it doesn't fail | |
| run: npm run build |