Skip to content

fix: linter warnings regarding usage of any #95

fix: linter warnings regarding usage of any

fix: linter warnings regarding usage of any #95

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