MiniZinc grammar for tree-sitter
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add initial CI integration

+22
+22
.github/workflows/tree-sitter.yml
··· 1 + name: Tree Sitter CI 2 + 3 + on: 4 + push: 5 + branches: [ master ] 6 + pull_request: 7 + branches: [ master ] 8 + 9 + jobs: 10 + build: 11 + runs-on: ubuntu-latest 12 + 13 + steps: 14 + - uses: actions/checkout@v2 15 + - name: Setup Node.js 16 + uses: actions/setup-node@v1 17 + - name: Install Dependencies 18 + run: npm install 19 + - name: Check if generated file are up-to-date 20 + run: npm run build --if-present && git diff --exit-code 21 + - name: Run parser tests 22 + run: npm test