dashboard-ui/.github/workflows/futon-deploy.yaml
l4kr 7229603a98
Some checks failed
Lint / Run linters (pull_request) Failing after 36s
acid testing
2023-09-13 15:42:48 +02:00

32 lines
612 B
YAML

name: Lint
on:
pull_request:
types: [closed]
branches: [main]
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 12
# ESLint and Prettier must be in `package.json`
- name: Install Node.js dependencies
run: npm ci
- name: Run linters
uses: wearerequired/lint-action@v2
with:
eslint: true
prettier: true
stylelint: true