Skip to content

Add linting workflow & add badges to README #3

Add linting workflow & add badges to README

Add linting workflow & add badges to README #3

Workflow file for this run

name: Linting
on:
push:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.version }}
cache: "npm"
- name: Lint 🕵️‍♀️
run: |
npm install
npm run lint