Skip to content

build(deps-dev): bump @pokujs/multi-suite from 1.0.1 to 1.0.2 in the dev-dependencies group #103

build(deps-dev): bump @pokujs/multi-suite from 1.0.1 to 1.0.2 in the dev-dependencies group

build(deps-dev): bump @pokujs/multi-suite from 1.0.1 to 1.0.2 in the dev-dependencies group #103

Workflow file for this run

name: CI - Build
on:
pull_request:
paths:
- '.github/workflows/ci-build.yml'
- 'lib/**'
- 'test/**'
- 'typings/**'
- 'rollup.config.mjs'
- 'index.js'
- 'promise.js'
- 'index.d.ts'
- 'promise.d.ts'
- 'tsconfig.json'
- 'package.json'
- 'package-lock.json'
push:
branches: [main]
workflow_dispatch:
jobs:
tests-build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [22]
name: Node.js ${{ matrix.node-version }}
steps:
- uses: actions/checkout@v6
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
package-manager-cache: false
- name: Cache dependencies
uses: actions/cache@v5
with:
path: ~/.npm
key: npm-linux-${{ hashFiles('package-lock.json') }}
restore-keys: npm-linux-
- name: Install npm dependencies
run: npm ci
- name: Testing TypeScript build
run: npm run typecheck
- name: Testing Circular Imports
run: npm run test:build