Skip to content

fix: use named imports and resolve mock specifiers for Node 24 compat #6

fix: use named imports and resolve mock specifiers for Node 24 compat

fix: use named imports and resolve mock specifiers for Node 24 compat #6

Workflow file for this run

name: Node CI
on:
workflow_dispatch:
pull_request:
types:
- opened
- edited
- synchronize
branches:
- main
- master
jobs:
opensource-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 24
- run: npm ci
- run: npm run check
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24]
steps:
- uses: actions/checkout@v4
- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test
conventional-pr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
commitlintRulesPath: "./commitlint.rules.js"
commitTitleMatch: "true" # default: 'true'
ignoreCommits: "false" # default: 'false'