Skip to content

chore: make eslint happy #46

chore: make eslint happy

chore: make eslint happy #46

Workflow file for this run

name: Lint & Test
on:
push:
pull_request:
types: [opened, synchronize]
jobs:
test:
name: Lint & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18
check-latest: true
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm install -g npm && npm install
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build
run: npm run build