Skip to content

feature: add JavaScript codegen #84

feature: add JavaScript codegen

feature: add JavaScript codegen #84

Workflow file for this run

name: build and test codebase
on: [pull_request, workflow_dispatch]
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [18.x, 20.x]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: yarn --immutable
- name: Build
run: yarn build
- name: Test
run: npm test