mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-12-28 23:40:49 +00:00
6e5363b971
Signed-off-by: Renovate Bot <bot@renovateapp.com> Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
81 lines
2.1 KiB
YAML
81 lines
2.1 KiB
YAML
# SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
name: Frontend / Lint
|
|
|
|
on:
|
|
push:
|
|
branches: [ develop ]
|
|
pull_request:
|
|
branches: [ develop ]
|
|
|
|
env:
|
|
NODE_VERSION: 18
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: frontend
|
|
|
|
jobs:
|
|
changes:
|
|
name: Check for frontend 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:
|
|
- 'frontend/**'
|
|
- '.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: Get yarn cache directory path
|
|
if: needs.changes.outputs.changed == 'true'
|
|
id: yarn-cache-dir-path
|
|
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
|
|
|
|
- name: Cache yarn cache
|
|
if: needs.changes.outputs.changed == 'true'
|
|
uses: actions/cache@v3
|
|
id: yarn-cache
|
|
with:
|
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
|
key: ${{ runner.os }}-${{ env.NODE_VERSION }}-yarn-${{ hashFiles('frontend/yarn.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-yarn-${{ env.NODE_VERSION }}
|
|
|
|
- name: Set up NodeJS
|
|
if: needs.changes.outputs.changed == 'true'
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ env.NODE_VERSION }}
|
|
cache-dependency-path: frontend/yarn.lock
|
|
cache: 'yarn'
|
|
|
|
- name: Install dependencies
|
|
if: needs.changes.outputs.changed == 'true'
|
|
run: yarn install --immutable
|
|
|
|
- name: Lint code
|
|
if: needs.changes.outputs.changed == 'true'
|
|
run: yarn lint
|