bump reference grammar to f5f0c7c8fa69c87725e0f840b3bc1446821c7412 #36
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: CI | |
on: | |
push: | |
branches: [ dev ] | |
pull_request: | |
branches: [ dev ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Install dependencies (gyp would fail) | |
run: npm install || true | |
- name: Generate parser sources | |
run: make generate | |
- name: Install dependencies (again to run gyp rebuild) | |
run: npm install | |
- name: Run tests | |
run: npm test | |
- name: Run cargo tests | |
run: cargo test | |
- name: Parse examples | |
run: make fetch-examples parse-examples |