Skip to content

build(deps-dev): bump eslint from 8.27.0 to 9.1.0 #43

build(deps-dev): bump eslint from 8.27.0 to 9.1.0

build(deps-dev): bump eslint from 8.27.0 to 9.1.0 #43

Workflow file for this run

name: Node.js CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
env:
CI: true
NODE_ENV: "test"
- name: Run Tests
run: npm test
env:
NODE_ENV: "test"
CI: true