2021-01-06 15:37:59 -05:00
|
|
|
# SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
2020-11-22 15:50:07 -05:00
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-08-31 06:48:58 -04:00
|
|
|
name: lint
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [main]
|
|
|
|
pull_request:
|
|
|
|
branches: [main]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: Lints all .ts and .tsx files
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-03-05 10:27:37 -05:00
|
|
|
uses: actions/checkout@v3
|
2020-11-29 04:07:44 -05:00
|
|
|
|
|
|
|
- name: Get yarn cache directory path
|
|
|
|
id: yarn-cache-dir-path
|
2021-12-30 12:45:04 -05:00
|
|
|
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
|
2020-11-29 04:07:44 -05:00
|
|
|
|
2021-06-21 16:58:54 -04:00
|
|
|
- name: Cache yarn cache
|
2022-04-02 05:07:13 -04:00
|
|
|
uses: actions/cache@v3
|
2020-11-29 04:07:44 -05:00
|
|
|
id: yarn-cache
|
2020-08-31 06:48:58 -04:00
|
|
|
with:
|
2020-11-29 04:07:44 -05:00
|
|
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
2021-05-24 15:01:16 -04:00
|
|
|
key: ${{ runner.os }}-16-yarn-${{ hashFiles('**/yarn.lock') }}
|
2020-11-29 04:07:44 -05:00
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-yarn-
|
|
|
|
|
2020-08-31 06:48:58 -04:00
|
|
|
- name: Set up NodeJS
|
2022-02-25 19:36:32 -05:00
|
|
|
uses: actions/setup-node@v3
|
2020-08-31 06:48:58 -04:00
|
|
|
with:
|
2021-05-24 15:01:16 -04:00
|
|
|
node-version: 16
|
2020-08-31 06:48:58 -04:00
|
|
|
- name: Install dependencies
|
2021-12-30 12:45:04 -05:00
|
|
|
run: yarn install --immutable
|
2020-08-31 06:48:58 -04:00
|
|
|
- name: Lint code
|
|
|
|
run: yarn lint
|
2021-06-06 17:14:00 -04:00
|
|
|
format:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: Checks codestyle of all .ts and .tsx files
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-03-05 10:27:37 -05:00
|
|
|
uses: actions/checkout@v3
|
2021-06-06 17:14:00 -04:00
|
|
|
|
|
|
|
- name: Get yarn cache directory path
|
|
|
|
id: yarn-cache-dir-path
|
2021-12-30 12:45:04 -05:00
|
|
|
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
|
2021-06-06 17:14:00 -04:00
|
|
|
|
2021-06-21 16:58:54 -04:00
|
|
|
- name: Cache yarn cache
|
2022-04-02 05:07:13 -04:00
|
|
|
uses: actions/cache@v3
|
2021-06-06 17:14:00 -04:00
|
|
|
id: yarn-cache
|
|
|
|
with:
|
|
|
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
|
|
|
key: ${{ runner.os }}-16-yarn-${{ hashFiles('**/yarn.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-yarn-
|
|
|
|
|
|
|
|
- name: Set up NodeJS
|
2022-02-25 19:36:32 -05:00
|
|
|
uses: actions/setup-node@v3
|
2021-06-06 17:14:00 -04:00
|
|
|
with:
|
|
|
|
node-version: 16
|
|
|
|
- name: Install dependencies
|
2021-12-30 12:45:04 -05:00
|
|
|
run: yarn install --immutable
|
2021-06-06 17:14:00 -04:00
|
|
|
- name: Lint code
|
|
|
|
run: yarn format
|