mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-29 13:34:23 -05:00
37 lines
830 B
YAML
37 lines
830 B
YAML
|
# SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
||
|
#
|
||
|
# SPDX-License-Identifier: AGPL-3.0-only
|
||
|
|
||
|
name: Lint and check format
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ develop ]
|
||
|
pull_request:
|
||
|
branches: [ develop ]
|
||
|
|
||
|
env:
|
||
|
NODEJS_VERSION: 18
|
||
|
|
||
|
jobs:
|
||
|
lint:
|
||
|
runs-on: ubuntu-latest
|
||
|
name: Lint files and check formatting
|
||
|
steps:
|
||
|
- name: Checkout repository
|
||
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
||
|
|
||
|
- name: Setup node
|
||
|
uses: ./.github/actions/setup-node
|
||
|
with:
|
||
|
NODEJS_VERSION: ${{ env.NODEJS_VERSION }}
|
||
|
|
||
|
- name: Run ESLint
|
||
|
run: yarn turbo run lint
|
||
|
shell: bash
|
||
|
env:
|
||
|
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
|
||
|
TURBO_API: ${{ vars.TURBO_API }}
|
||
|
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
|
||
|
|