Skip to content

Bump eslint from 8.37.0 to 8.44.0 #54

Bump eslint from 8.37.0 to 8.44.0

Bump eslint from 8.37.0 to 8.44.0 #54

Workflow file for this run

name: CI
# Controls when the action will run.
on:
push:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
# This workflow contains multiple jobs
build_test:
name: Lint & Test
# The type of runner that the job will run on
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}
- name: setup node
uses: actions/setup-node@master
with:
node-version: ${{ matrix.node-version }}
# install applicaion dependencies
- name: Install dependencies
run: |
npm install
# check lint
- name: lint
run: |
npm run lint
# executes test cases
- name: Test cases
run: |
npm run test