Skip to content

build(deps): bump org.jetbrains.kotlin-wrappers:kotlin-js from 2025.12.6 to 2025.12.9 #3583

build(deps): bump org.jetbrains.kotlin-wrappers:kotlin-js from 2025.12.6 to 2025.12.9

build(deps): bump org.jetbrains.kotlin-wrappers:kotlin-js from 2025.12.6 to 2025.12.9 #3583

Workflow file for this run

name: Dry-Run Release
on:
pull_request:
jobs:
lint-commits:
name: Lint PR commits
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
with:
fetch-depth: 0
# Use this action to run commitlint because pre-commit does not run it in CI.
# pre-commit probably does not run commitlint in CI because pre-commit can only run it in the `commit-msg` stage.
- uses: wagoid/commitlint-github-action@b948419dd99f3fd78a6548d48f94e3df7f6bf3ed # v6
test-release:
name: Dry-run semantic-release
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
with:
fetch-depth: 0
- name: Checkout branch
# Pretend to semantic-release that the PR result is eligible for
# building releases because --dry-run still filters for configured
# branches.
run: git checkout -b main
- name: Setup Node.js
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
with:
node-version-file: '.nvmrc'
- name: Cache Node packages
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
with:
path: node_modules
key: release-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
run: npm ci
- name: Dry-run release
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
# We need to convince semantic-release to not pick up some
# configuration from the CI environment by removing the variable that
# is used for CI detection.
run: unset GITHUB_ACTIONS && npx semantic-release --dry-run --ci false