Remove duplicate aiconfig (#1496) #620
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |