Skip to content

Bump eslint from 8.57.0 to 9.0.0 #101

Bump eslint from 8.57.0 to 9.0.0

Bump eslint from 8.57.0 to 9.0.0 #101

Workflow file for this run

name: Build
on:
push:
branches:
- master
paths-ignore:
- '**.md'
- 'LICENSE.txt'
pull_request:
branches:
- master
paths-ignore:
- '**.md'
- 'LICENSE.txt'
jobs:
build-and-test:
name: Build & Test
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install NodeJS
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
runs-on: ubuntu-latest