1
1
mirror of https://github.com/theoludwig/react-component-form.git synced 2024-07-17 07:30:13 +02:00
react-component-form/.github/workflows/lint.yml

29 lines
599 B
YAML
Raw Normal View History

2021-06-17 18:48:19 +02:00
name: 'Lint'
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'
steps:
2023-01-10 21:23:32 +01:00
- uses: 'actions/checkout@v3.3.0'
2021-06-17 18:48:19 +02:00
- name: 'Use Node.js'
2023-01-10 21:23:32 +01:00
uses: 'actions/setup-node@v3.6.0'
2021-06-17 18:48:19 +02:00
with:
2022-02-19 17:18:13 +01:00
node-version: 'lts/*'
cache: 'npm'
2021-06-17 18:48:19 +02:00
- name: 'Install'
2022-02-19 17:18:13 +01:00
run: 'npm 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'
2023-01-10 21:23:32 +01:00
- run: 'npm run lint:eslint'
- run: 'npm run lint:prettier'