[CCFPCM-688] fix: location_id is added to the txn table for unknown locations #665
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 backend | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- apps/backend/** | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v3 | |
name: checkout | |
- uses: actions/cache@v3 | |
name: Cache yarn | |
with: | |
path: ./.yarn/cache | |
key: pcc-backend | |
restore-keys: pcc-backend | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 18.x | |
- name: Install Dependencies | |
run: yarn | |
- name: Lint Check | |
run: yarn workspace @payment/backend lint |