Some work about adaptive color scheme for Web UI (PR #19901)
http://[316:c51a:62a3:8b9::4]/d4708/qBittorrent/src/branch/adaptive-webui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
559 B
33 lines
559 B
3 years ago
|
name: CI - WebUI
|
||
4 years ago
|
|
||
|
on: [pull_request, push]
|
||
|
|
||
|
jobs:
|
||
3 years ago
|
ci:
|
||
|
name: Check
|
||
3 years ago
|
runs-on: ubuntu-latest
|
||
3 years ago
|
|
||
4 years ago
|
defaults:
|
||
|
run:
|
||
|
working-directory: src/webui/www
|
||
|
|
||
|
steps:
|
||
3 years ago
|
- name: Checkout repository
|
||
3 years ago
|
uses: actions/checkout@v2
|
||
4 years ago
|
|
||
3 years ago
|
- name: Setup nodejs
|
||
3 years ago
|
uses: actions/setup-node@v2
|
||
|
with:
|
||
3 years ago
|
node-version: 'lts/*'
|
||
4 years ago
|
|
||
3 years ago
|
- name: Install tools
|
||
3 years ago
|
run: npm install
|
||
4 years ago
|
|
||
3 years ago
|
- name: Lint code
|
||
3 years ago
|
run: npm run lint
|
||
4 years ago
|
|
||
3 years ago
|
- name: Format code
|
||
3 years ago
|
run: |
|
||
|
npm run format
|
||
|
git diff --exit-code
|