Skip to content

build(deps-dev): bump stylelint from 16.8.2 to 16.10.0 #70

build(deps-dev): bump stylelint from 16.8.2 to 16.10.0

build(deps-dev): bump stylelint from 16.8.2 to 16.10.0 #70

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