feat: stricter validation of heading fragments by being Case sensitive #25
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: | |
push: | |
branches: [develop] | |
pull_request: | |
branches: [master, develop] | |
jobs: | |
test: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v4.1.1" | |
- name: "Setup Node.js" | |
uses: "actions/setup-node@v4.0.2" | |
with: | |
node-version: "lts/*" | |
cache: "npm" | |
- name: "Install dependencies" | |
run: "npm clean-install" | |
- name: "Test" | |
run: "npm run test" |