Skip to content

feat: add AST attribute helpers (#13) #4

feat: add AST attribute helpers (#13)

feat: add AST attribute helpers (#13) #4

Workflow file for this run

name: ci
on:
push:
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
cache: yarn
- name: Enable Yarn
run: |
corepack enable
corepack prepare yarn@1.22.22 --activate
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run tests
run: yarn test
- name: Check types
run: yarn typecheck