Skip to content

Fix branch rule for 'On branch _branch_' declarations #46

Fix branch rule for 'On branch _branch_' declarations

Fix branch rule for 'On branch _branch_' declarations #46

# generates the parser with 'tree-sitter generate' if the parser is out of date
name: Generate Parser
on:
push:
branches:
- main
jobs:
generate:
name: Generate Parser
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: "16.x"
- name: Cache npm dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install npm dependencies
run: npm ci
- name: Generate parser files
run: |
npx tree-sitter generate
npx tree-sitter build-wasm
- name: Commit generated parser files
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Generate parser
file_pattern: src
- name: Checkout gh-pages branch to ./gh-pages
uses: actions/checkout@v2
with:
ref: gh-pages
path: ./gh-pages
- run: mv *.wasm ./gh-pages
- name: Commit generated WASM binding
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Generate WASM binding
file_pattern: "*.wasm"
repository: ./gh-pages