feat: update translation endpoint to be compatible for different endp… #1150
Workflow file for this run
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: Lint | |
on: push | |
jobs: | |
run-linters: | |
name: Run linters | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v2 | |
- name: Use Node.js v20 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 20 | |
- name: Install Node.js dependencies | |
run: npm install | |
- name: Run ESLint | |
run: npx eslint ./src | |
- name: Run TS | |
run: npx tsc --noEmit |