Skip to content

build(deps-dev): bump @types/node from 18.19.64 to 22.13.1 #1048

build(deps-dev): bump @types/node from 18.19.64 to 22.13.1

build(deps-dev): bump @types/node from 18.19.64 to 22.13.1 #1048

Workflow file for this run

name: CI
on:
push:
branches:
- master
- releases/*
pull_request:
branches:
- '*'
jobs:
build:
if: always()
runs-on: ${{ matrix.os }}
concurrency:
group: ${{ github.workflow }}-build-${{ matrix.os }}--${{ github.ref }}
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- name: Setup repository
uses: actions/checkout@v4
- name: Setup environment
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
run: npm install
- name: Bundle sources
run: npm run ci:build
- name: Run Hygiene Checks
run: npm run ci:lint
- name: Run unit tests
run: npm run ci:test
test:
name: Test on node@${{ matrix.node_version }}
if: always()
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-test-${{ matrix.node_version }}-${{ github.ref }}
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
node_version: [18.18, 18, 20, 22, 23]
steps:
- name: Setup repository
uses: actions/checkout@v4
- name: Setup environment
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
- name: Install dependencies
run: npm install
- name: Bundle sources
run: npm run ci:build
- name: Run Hygiene Checks
run: npm run ci:lint
env:
DEBUG: eslint:eslint