Skip to content

docs: explain how to start working on a new rule #11

docs: explain how to start working on a new rule

docs: explain how to start working on a new rule #11

Workflow file for this run

name: test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v2
- name: Set up Node.js 16
uses: actions/setup-node@v2
with:
node-version: 16
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run Prettier, ESLint, and unit tests
run: npm run format && npm run lint && npm test