Skip to content

Commit

Permalink
Add github action
Browse files Browse the repository at this point in the history
  • Loading branch information
xerbalind committed Feb 20, 2024
1 parent 1ff293e commit d10f4e5
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Lint

on:
push:
branches:
- main
pull_request:
branches:
- main

permissions:
checks: write
contents: write

jobs:
lint:
name: Run linters
runs-on: self-hosted

steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install Node (frontend) dependencies
working-directory: frontend
run: npm ci
- name: Install Python linting (backend) dependencies
run: pip install autopep8

- name: Run Frontend linters
working-directory: frontend
run: |
npm run dev lint
npm run dev format:check
- name: Run Backend linter
run: autopep8 -rd --exit-code backend

0 comments on commit d10f4e5

Please sign in to comment.