Skip to content

Merge pull request #1 from level2-gis/mail_use_ssl #6

Merge pull request #1 from level2-gis/mail_use_ssl

Merge pull request #1 from level2-gis/mail_use_ssl #6

Workflow file for this run

name: Code Layout
on: push
jobs:
code_style_python:
name: Python code convention check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
with:
options: "--check --verbose --diff"
src: "./server"
code_style_js:
name: JavaScript code convention check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: Check JS
run: |
cd web-app
yarn install
yarn run lint:all