Skip to content

chore(deps-dev): bump eslint-plugin-import from 2.28.1 to 2.29.0 #908

chore(deps-dev): bump eslint-plugin-import from 2.28.1 to 2.29.0

chore(deps-dev): bump eslint-plugin-import from 2.28.1 to 2.29.0 #908

Workflow file for this run

#-----------------------------
# CI Github Action: Lint
#-----------------------------
name: lint
on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main, dev ]
workflow_dispatch:
env:
node-version: 18.x
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node v${{ env.node-version }}
uses: actions/setup-node@v3
with:
cache: 'npm'
node-version: ${{ env.node-version }}
- name: Install NPM Dependencies
run: npm ci
- name: Run Linting JS
run: npm run lint:js
- name: Run Linting CSS
run: npm run lint:css