Skip to content

build(deps-dev): bump the npm-dependencies group with 3 updates #50

build(deps-dev): bump the npm-dependencies group with 3 updates

build(deps-dev): bump the npm-dependencies group with 3 updates #50

Workflow file for this run

name: Build and Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run checks
run: |
npm run lint
npm run check-format
npm run test
npm run build