Skip to content

chore: update npm dependency #1166

chore: update npm dependency

chore: update npm dependency #1166

Workflow file for this run

name: Lint JavaScript and SCSS
on:
push:
branches:
- dev
- main
pull_request:
branches:
- dev
jobs:
lint:
name: Lint JavaScript and SCSS
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache node modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies and lint JavaScript and SCSS files
run: |
npm i
npm run lint
env:
CI: true