1
1
mirror of https://github.com/theoludwig/react-component-form.git synced 2024-11-09 22:08:47 +01:00
react-component-form/.github/workflows/lint.yml

29 lines
620 B
YAML
Raw Normal View History

name: "Lint"
2021-06-17 18:48:19 +02:00
on:
push:
branches: [develop]
2021-06-17 18:48:19 +02:00
pull_request:
2022-08-26 16:29:20 +02:00
branches: [master, develop]
2021-06-17 18:48:19 +02:00
jobs:
lint:
runs-on: "ubuntu-latest"
2021-06-17 18:48:19 +02:00
steps:
- uses: "actions/checkout@v3.5.3"
2021-06-17 18:48:19 +02:00
- name: "Setup Node.js"
uses: "actions/setup-node@v3.6.0"
2021-06-17 18:48:19 +02:00
with:
node-version: "lts/*"
cache: "npm"
2021-06-17 18:48:19 +02:00
- name: "Install dependencies"
run: "npm clean-install"
2021-06-17 18:48:19 +02:00
- run: 'npm run lint:commit -- --to "${{ github.sha }}"'
- run: "npm run lint:editorconfig"
- run: "npm run lint:markdown"
- run: "npm run lint:eslint"
- run: "npm run lint:prettier"