mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-25 03:06:31 -05:00
61 lines
1.4 KiB
YAML
61 lines
1.4 KiB
YAML
|
# SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
||
|
#
|
||
|
# SPDX-License-Identifier: AGPL-3.0-only
|
||
|
|
||
|
name: Commons / Lint
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ develop ]
|
||
|
pull_request:
|
||
|
branches: [ develop ]
|
||
|
|
||
|
env:
|
||
|
NODE_VERSION: 18
|
||
|
|
||
|
defaults:
|
||
|
run:
|
||
|
working-directory: commons
|
||
|
|
||
|
jobs:
|
||
|
changes:
|
||
|
name: Check for commons changes
|
||
|
runs-on: ubuntu-latest
|
||
|
permissions:
|
||
|
pull-requests: read
|
||
|
outputs:
|
||
|
changed: ${{ github.event_name == 'push' || steps.changed.outputs.files }}
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
if: github.event_name != 'push'
|
||
|
|
||
|
- name: Check for frontend file changes
|
||
|
if: github.event_name != 'push'
|
||
|
uses: dorny/paths-filter@v2
|
||
|
id: changed
|
||
|
with:
|
||
|
filters: |
|
||
|
files:
|
||
|
- 'commons/**'
|
||
|
- '.github/**'
|
||
|
- '.yarn/**'
|
||
|
|
||
|
lint:
|
||
|
needs: changes
|
||
|
runs-on: ubuntu-latest
|
||
|
name: Lints all .ts and .tsx files
|
||
|
steps:
|
||
|
- name: Checkout repository
|
||
|
if: needs.changes.outputs.changed == 'true'
|
||
|
uses: actions/checkout@v3
|
||
|
|
||
|
- name: Setup node
|
||
|
if: needs.changes.outputs.changed == 'true'
|
||
|
uses: ./.github/actions/setup-node
|
||
|
with:
|
||
|
NODE_VERSION: ${{ env.NODE_VERSION }}
|
||
|
|
||
|
- name: Lint code
|
||
|
if: needs.changes.outputs.changed == 'true'
|
||
|
run: yarn lint
|