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
566 B
YAML
Raw Normal View History

2021-06-17 18:48:19 +02:00
name: 'Lint'
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
lint:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v2'
- name: 'Use Node.js'
uses: 'actions/setup-node@v2.1.5'
with:
node-version: '14.x'
- run: 'npm install --global npm@7'
- name: 'Install'
2021-06-17 18:58:05 +02:00
run: 'npm ci'
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:typescript'