Skip to content

build(deps-dev): bump eslint-plugin-import from 2.29.1 to 2.30.0 #517

build(deps-dev): bump eslint-plugin-import from 2.29.1 to 2.30.0

build(deps-dev): bump eslint-plugin-import from 2.29.1 to 2.30.0 #517

name: build
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
run_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.14.0
- name: Cache node modules
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
- name: Run build step
run: npm run build