Skip to content

Refactor non-string keyed objects into arrays #178

Refactor non-string keyed objects into arrays

Refactor non-string keyed objects into arrays #178

Workflow file for this run

name: Run linters
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
prettier:
name: Check formatting with Prettier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '14.x'
- name: Install dependencies
run: npm ci
- name: Check formatting
run: npm run check-prettier
eslint:
name: Run eslint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '14.x'
- name: Install dependencies
run: npm ci
- name: Run eslint
run: npm run lint