Skip to content

feat: support parsing indented syntax (with some minor limitations) #23

feat: support parsing indented syntax (with some minor limitations)

feat: support parsing indented syntax (with some minor limitations) #23

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
version: [20]
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.version }}
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Lint
run: npm run lint
- name: Test
run: npm run test