Skip to content

chore(deps-dev): bump eslint from 8.57.0 to 9.29.0 #16

chore(deps-dev): bump eslint from 8.57.0 to 9.29.0

chore(deps-dev): bump eslint from 8.57.0 to 9.29.0 #16

Workflow file for this run

name: Build & Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Running build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ci-env:
- '1'
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install
run: npm install
- name: Running build
run: npm run build
lint:
name: Running linters
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ci-env:
- '1'
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install
run: npm install
- name: Running linter
run: npm run lint