Pz/types 004 - Add missing Customers API endpoints #431
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: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
run-linters: | |
name: Run linters | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v2 | |
- name: Use Node.js 14.15 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 14.15 | |
- name: Cache Yarn Dependencies | |
uses: c-hive/gha-yarn-cache@v1 | |
- name: Install Dependencies | |
run: yarn install --frozen-lockfile | |
- name: Lint TypeScript and eslint | |
run: yarn lint |