Skip to content

build(deps-dev): bump @types/node from 22.10.2 to 22.10.3 (#18) #44

build(deps-dev): bump @types/node from 22.10.2 to 22.10.3 (#18)

build(deps-dev): bump @types/node from 22.10.2 to 22.10.3 (#18) #44

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
quality:
name: Quality & Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [23.x]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Display Node.js version
run: node -v
- name: Install dependencies
run: npm ci
- name: Run linting
run: npm run lint
- name: Run docs formatting
run: npm run format
- name: Run tests
run: npm test
- name: Build the package
run: npm run build