fix(cli): CLI do not exit with 0 on pull when branch does not exist (… #1776
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: Run Typescript Tests | |
on: [push] | |
jobs: | |
jest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: | | |
npm install | |
npm run generate.typescript | |
cd ./clients/typescript | |
npm install | |
npm test |