Skip to content

build(deps-dev): bump eslint from 8.36.0 to 8.43.0 #583

build(deps-dev): bump eslint from 8.36.0 to 8.43.0

build(deps-dev): bump eslint from 8.36.0 to 8.43.0 #583

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 16.16.0
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- run: npm install --registry=https://registry.npmjs.org
- run: npm run lint