Skip to content

Chore: Update eslint to v8.52.0 #328

Chore: Update eslint to v8.52.0

Chore: Update eslint to v8.52.0 #328

Workflow file for this run

name: CI
on: [push]
jobs:
test:
name: Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
matrix:
node: ['16.x']
steps:
# https://github.com/actions/checkout
- name: Checkout repo
uses: actions/checkout@v3
# https://github.com/actions/setup-node
- name: Setup Node ${{ matrix.node }}
uses: actions/setup-node@v3.5.1
with:
node-version: ${{ matrix.node }}
# https://github.com/bahmutov/npm-install
- name: Install dependencies
uses: bahmutov/npm-install@v1
# - name: Build
# run: npm run build
# - name: Lint
# run: npm run lint
- name: Test
run: npm test