Skip to content

build(deps-dev): bump eslint from 8.44.0 to 8.52.0 #346

build(deps-dev): bump eslint from 8.44.0 to 8.52.0

build(deps-dev): bump eslint from 8.44.0 to 8.52.0 #346

Workflow file for this run

name: ci
# Author: @MikeRalphson
# Issue : n/a
# Desc : This workflow runs a simple lint and test for a node.js project
# run this on push to any branch and creation of pull-requests
on: [push, pull_request, workflow_dispatch]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1 # checkout repo content
- uses: actions/setup-node@v1 # setup Node.js
with:
node-version: '18.x'
- name: Audit package-lock.json
run: npx package-lock-audit ./package-lock.json
- name: Install deps
run: npm i
- name: Run lint
run: npm run lint
- name: Run tests
run: npm run test