Skip to content

build(deps): bump eslint from 9.21.0 to 9.22.0 in the linting-and-formatting group #211

build(deps): bump eslint from 9.21.0 to 9.22.0 in the linting-and-formatting group

build(deps): bump eslint from 9.21.0 to 9.22.0 in the linting-and-formatting group #211

Workflow file for this run

name: Set up and build project
on:
push:
branches:
- develop
- main
- '!dependabot/**'
pull_request:
branches:
- develop
- main
- '!dependabot/**'
jobs:
build:
name: Install dependencies and build project
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- '22.14.0'
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js environment
uses: actions/setup-node@v4
with:
node-version: '${{ matrix.node-version }}'
cache: npm
- name: Install Node.js dependencies
run: npm install
- name: Compile and build project
run: npm run build