39 lines
738 B
YAML
Raw Normal View History

name: 'Lint'
2022-05-16 13:15:29 +01:00
on:
push:
branches: [develop]
pull_request:
2022-05-16 20:34:00 +01:00
branches: [master, develop]
2022-05-16 13:15:29 +01:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3.0.0
- name: Use Node.js
uses: actions/setup-node@v3.1.1
with:
node-version: 16.x
- name: Install packages
2022-05-25 21:44:01 +01:00
run: yarn --frozen-lockfile
2022-05-16 13:15:29 +01:00
- name: Next.js linting
2022-05-25 21:44:01 +01:00
run: yarn lint:next
2022-05-16 13:15:29 +01:00
- name: Check types
run: yarn check-types
2022-05-16 13:15:29 +01:00
- name: Prettier linting
2022-05-25 21:44:01 +01:00
run: yarn lint:prettier
2022-05-16 13:15:29 +01:00
- name: Checking editorconfig
run: yarn lint:editorconfig
- name: Commit linting
run: yarn lint:commit -- --to '${{ github.sha }}'