Skip to content

Initial commit

Initial commit #1

name: Lint and Format
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Install Dependencies
run: npm ci
- name: Run ESLint
run: npm run lint
- name: Run Prettier
run: npm run format -- --check