rocketchat-gitea-hook/.gitea/workflows/lint.yaml

35 lines
645 B
YAML
Raw Normal View History

2023-05-01 23:31:27 +02:00
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 eslint
2023-05-01 23:31:27 +02:00
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 14
- name: Install Node.js dependencies
run: npm ci
2023-05-02 01:04:01 +02:00
- name: Run eslint
run: eslint *.js