Skip to content

Dev

Dev #186

Workflow file for this run

name: Lint
on:
push:
branches:
- stable
- staging
pull_request:
branches:
- stable
- staging
jobs:
format-and-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 16
- name: Install packages
run: npm ci
- name: Prettier
run: npm run format
- name: ESLint
run: npm run lint