Skip to content

Add linting packages #18

Add linting packages

Add linting packages #18

Workflow file for this run

name: Quality
on:
pull_request:
push:
branches:
- 'canary'
- 'main'
- '*'
jobs:
eslint:
name: 'ESLint'
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
- name: Install
uses: ./.github/composite-actions/install
- name: Run ESLint check
run: npm run eslint-check
prettier:
name: 'Prettier'
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
- name: Install
uses: actions/setup-node@v2
- name: Run Prettier check
run: npm prettier-check