Skip to content
This repository has been archived by the owner on Nov 27, 2023. It is now read-only.

fix: package.json & package-lock.json to reduce vulnerabilities #1287

fix: package.json & package-lock.json to reduce vulnerabilities

fix: package.json & package-lock.json to reduce vulnerabilities #1287

Workflow file for this run

name: ESLINT
# This workflow is triggered on pushes and PRs to this repository
on: [push, pull_request]
# paths:
# - '*' # Run workflow for all paths, later determine to run workflow only on javascript file changes.
# Define our jobs
jobs:
lint:
name: Linter # Job name
runs-on: ubuntu-20.04 # Run on Ubuntu version 20.04.
steps:
# This step checks out a copy of your repository.
- uses: actions/checkout@v2
# This step adds node setup with version 14
- uses: actions/setup-node@v2
with:
node-version: '14.x'
- name: Install Dependencies
run: npm install
- name: Run ESLint
run: npm run linter