Skip to content

fix: package.json to reduce vulnerabilities #336

fix: package.json to reduce vulnerabilities

fix: package.json to reduce vulnerabilities #336

Workflow file for this run

name: Lint
on:
push:
branches-ignore: dependabot/*
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: "16.x"
- name: Install dependencies
run: npm ci
- name: Lint project
run: npm run lint