Skip to content

Convert routing cookbook to an actual aiconfig.json (#1492) #616

Convert routing cookbook to an actual aiconfig.json (#1492)

Convert routing cookbook to an actual aiconfig.json (#1492) #616

name: Node.js Tests
# Triggers the workflow on push on main. This is the same as pr_typescript.yml but does not run on every PR.
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: "0"
- uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: |
cd typescript && yarn install
# TODO: we plan to uncomment these lines once linting is supported cc: @rossdanlm
# - name: Lint
# run: |
# cd typescript && yarn lint
- name: Test
run: |
cd typescript && yarn test
- name: Compile
run: |
cd typescript && yarn compile