mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-01-24 05:54:55 +03:00
27 lines
404 B
YAML
27 lines
404 B
YAML
|
name: Lint
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- "**"
|
||
|
- "!main"
|
||
|
|
||
|
jobs:
|
||
|
lint:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- name: Check out Git repository
|
||
|
uses: actions/checkout@v4
|
||
|
|
||
|
- name: Install Node.js
|
||
|
uses: actions/setup-node@v4
|
||
|
with:
|
||
|
node-version: 20.11.1
|
||
|
|
||
|
- name: Install dependencies
|
||
|
run: yarn
|
||
|
|
||
|
- name: Lint
|
||
|
run: yarn lint
|