Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ name: ci
on:
push:
branches:
- "*"
- "**"
pull_request:

jobs:
build:
Expand All @@ -15,9 +16,9 @@ jobs:
node-version: [22.x, 24.x, 26.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@

### 動作環境

* Node.js : 8以上
* Node.js : CI で検証しているのは 22.x / 24.x / 26.x です。mocha 11 が要求する 18.18.0 以上であれば動作する見込みですが、22 未満は検証していません。
* npm : 8.3 以上。`package.json` の `overrides` はこれより古い npm では解釈されず、脆弱性の残る推移的依存が入ります。

### セットアップ

Expand Down
Loading