Skip to content

chore: Bump eslint from 8.48.0 to 8.49.0 #207

chore: Bump eslint from 8.48.0 to 8.49.0

chore: Bump eslint from 8.48.0 to 8.49.0 #207

Workflow file for this run

name: Continuous Integration
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: ["12", "14", "16", "18"]
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
check-latest: true
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test