Enhance regex accuracy with boundary assertions (#24) #67
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
# This workflow runs vscode-tmgrammar-snap on the samples. | |
name: TextMate Grammar | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
branches: | |
- main | |
- develop | |
jobs: | |
grammar-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- name: Install dependencies | |
run: npm ci | |
- name: Run grammar tests | |
run: npm run test:grammar |