Files
decky-loader/.github/workflows/lint.yml
T
2023-10-20 17:10:33 +03:00

18 lines
305 B
YAML

name: Lint
on:
push:
jobs:
lint:
name: Run linters
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3 # Check out the repository first.
- name: Run prettier (JavaScript & TypeScript)
run: |
pushd frontend
npm install
npm run lint