Skip to content

feat: Used the local backend server. #71

feat: Used the local backend server.

feat: Used the local backend server. #71

Workflow file for this run

name: TS-Client lint
on:
push:
branches:
[development, development_*]
pull_request:
branches:
[development, development_*]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18.18.0'
- name: Install dependencies
run: cd clients/typescript && yarn install
- name: Run ESLint
run: cd clients/typescript && yarn lint