mirror of
https://github.com/mwalbeck/nextcloud-breeze-dark.git
synced 2024-11-05 08:17:07 +00:00
19 lines
381 B
YAML
19 lines
381 B
YAML
name: Lint
|
|
|
|
on: pull_request
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install dependencies
|
|
run: npm install
|
|
- name: Run prettier
|
|
if: ${{ always() }}
|
|
run: npm run prettier
|
|
- name: Run stylelint
|
|
continue-on-error: true
|
|
if: ${{ always() }}
|
|
run: npm run stylelint
|