✨ Spawn recipes in terminal #53
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: | |
pull_request: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '21' | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install | |
- name: Format | |
run: yarn format | |
- name: Lint | |
run: yarn lint | |
- name: Build | |
run: yarn pretest | |
# TODO: add integration tests when we have them | |
- name: Test grammar | |
run: yarn test-grammar |