Skip to content

add: readme and contributing guide #90

add: readme and contributing guide

add: readme and contributing guide #90

Workflow file for this run

name: Lint & test
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
node-version: "18"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Concurrently lint and test
run: npm exec concurrently npm:lint npm:test