mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 10:58:20 -07:00
110 lines
2.8 KiB
YAML
110 lines
2.8 KiB
YAML
name: Lint
|
|
|
|
on:
|
|
push:
|
|
branches: [ master, release* ]
|
|
pull_request:
|
|
branches: [ master, release* ]
|
|
|
|
jobs:
|
|
run-escheck:
|
|
name: Run es-check
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out Git repository
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
|
|
- name: Setup node environment
|
|
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
|
|
with:
|
|
node-version: 16
|
|
check-latest: true
|
|
cache: npm
|
|
|
|
- name: Install Node.js dependencies
|
|
run: npm ci --no-audit
|
|
env:
|
|
SKIP_PREPARE: true
|
|
|
|
- name: Run a production build
|
|
run: npm run build:production
|
|
|
|
- name: Run es-check
|
|
run: npm run escheck
|
|
|
|
run-eslint:
|
|
name: Run eslint
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out Git repository
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
|
|
- name: Setup node environment
|
|
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
|
|
with:
|
|
node-version: 16
|
|
check-latest: true
|
|
cache: npm
|
|
|
|
- name: Install Node.js dependencies
|
|
run: npm ci --no-audit
|
|
env:
|
|
SKIP_PREPARE: true
|
|
|
|
- name: Run eslint
|
|
run: npm run lint
|
|
|
|
run-stylelint-css:
|
|
name: Run stylelint (css)
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out Git repository
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
|
|
- name: Setup node environment
|
|
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
|
|
with:
|
|
node-version: 16
|
|
check-latest: true
|
|
cache: npm
|
|
|
|
- name: Set up stylelint matcher
|
|
uses: xt0rted/stylelint-problem-matcher@34db1b874c0452909f0696aedef70b723870a583 # tag=v1
|
|
|
|
- name: Install Node.js dependencies
|
|
run: npm ci --no-audit
|
|
env:
|
|
SKIP_PREPARE: true
|
|
|
|
- name: Run stylelint
|
|
run: npm run stylelint:css
|
|
|
|
run-stylelint-scss:
|
|
name: Run stylelint (scss)
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out Git repository
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
|
|
- name: Setup node environment
|
|
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
|
|
with:
|
|
node-version: 16
|
|
check-latest: true
|
|
cache: npm
|
|
|
|
- name: Set up stylelint matcher
|
|
uses: xt0rted/stylelint-problem-matcher@34db1b874c0452909f0696aedef70b723870a583 # tag=v1
|
|
|
|
- name: Install Node.js dependencies
|
|
run: npm ci --no-audit
|
|
env:
|
|
SKIP_PREPARE: true
|
|
|
|
- name: Run stylelint
|
|
run: npm run stylelint:scss
|