rocketchat-gitea-hook/.gitea/workflows/lint.yaml
Marius Alwan Meyer 0b2620a0ab
Some checks failed
Lint / Run linters (push) Failing after 43s
don't use package-lock.json
2023-05-01 22:33:05 +00:00

38 lines
826 B
YAML

name: Lint
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Install Dependencies
run: apt update; apt install -y nodejs
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 14
# ESLint and Prettier must be in `package.json`
- name: Install Node.js dependencies
run: npm i eslint eslint-plugin-jsdoc prettier
- name: Run linters
uses: https://github.com/wearerequired/lint-action@v2
with:
eslint: true
prettier: true