Add clean
script
#65
Workflow file for this run
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: | |
pull_request: | |
repository_dispatch: | |
types: [run_build] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3.1.0 | |
- name: Install dependencies | |
run: | | |
yarn install | |
- name: Lint the grammar | |
run: | | |
yarn lint | |
- name: Generate syntax | |
run: | | |
yarn generate | |
- name: Test corpus | |
run: | | |
yarn test |