mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-04-26 15:01:20 +00:00
38 lines
778 B
YAML
38 lines
778 B
YAML
name: Linting
|
|
|
|
on: [pull_request]
|
|
|
|
permissions:
|
|
checks: write
|
|
contents: write
|
|
|
|
jobs:
|
|
run-checks:
|
|
name: Run checks
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node-version: [18]
|
|
steps:
|
|
- name: Checkout Git repository
|
|
uses: actions/checkout@v4.1.7
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v4.0.0
|
|
with:
|
|
version: latest
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4.0.2
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
cache: pnpm
|
|
|
|
- name: Install Node.js dependencies
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Run linters
|
|
uses: wearerequired/lint-action@v2.3.0
|
|
with:
|
|
eslint: true
|
|
prettier: true
|