mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-12-12 09:55:29 -05:00
b8cfe1ae43
Co-authored-by: Renovate Bot <bot@renovateapp.com>
28 lines
594 B
YAML
28 lines
594 B
YAML
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
|
|
uses: actions/checkout@v2
|
|
- name: Cache node_modules
|
|
uses: actions/cache@v2.1.2
|
|
with:
|
|
path: node_modules
|
|
key: node_modules
|
|
- name: Set up NodeJS
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 14
|
|
- name: Install dependencies
|
|
run: yarn install
|
|
- name: Lint code
|
|
run: yarn lint
|