change scalar_one to one to get scope column #1046
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, pull_request] | |
jobs: | |
backend: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Backend code formatting check (Black) | |
uses: psf/black@stable | |
frontend: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install npm v8 | |
run: npm i -g npm@8 | |
- name: Frontend code formatting check (Prettier) | |
uses: creyD/[email protected] | |
with: | |
dry: True | |
prettier_options: --config frontend/.prettierrc --check frontend/**/*.ts |