Skip to content

chore(deps-dev): bump @stylistic/eslint-plugin from 5.5.0 to 5.6.1 #787

chore(deps-dev): bump @stylistic/eslint-plugin from 5.5.0 to 5.6.1

chore(deps-dev): bump @stylistic/eslint-plugin from 5.5.0 to 5.6.1 #787

name: Continuous Integration
on: push
jobs:
build:
name: Build app
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22, 24]
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Install packages
run: npm install
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Bundle
if: ${{ matrix.node-version == 22 }}
run: npm run bundle