Skip to content

Bump eslint from 9.8.0 to 9.9.1 #24

Bump eslint from 9.8.0 to 9.9.1

Bump eslint from 9.8.0 to 9.9.1 #24

Workflow file for this run

name: CI
on: ["push"]
jobs:
check_linter_and_tests:
name: Create/update todos
runs-on: ubuntu-latest
timeout-minutes: 20
environment: default_environment
steps:
- uses: actions/checkout@master
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20.12.0'
- name: Install dependencies
run: npm i
- name: Check for Linting Violations
run: npm run lint
- name: Build
run: npm run build
- name: Run Tests
run: npm run tests