Skip to content

✨ Spawn recipes in terminal #52

✨ Spawn recipes in terminal

✨ Spawn recipes in terminal #52

Workflow file for this run

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