Skip to content

Commit b7b9845

Browse files
authored
Merge branch 'master' into dependabot/npm_and_yarn/rimraf-6.0.1
2 parents 636dd73 + 47a9608 commit b7b9845

File tree

3 files changed

+587
-155
lines changed

3 files changed

+587
-155
lines changed

.github/workflows/test.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Test with mocha
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
13+
strategy:
14+
matrix:
15+
# https://nodejs.org/en/about/previous-releases#release-schedule
16+
# https://github.com/actions/setup-node?tab=readme-ov-file#supported-version-syntax
17+
node-version: [18.x, 20.x, 22.x, 23.x]
18+
19+
steps:
20+
- uses: actions/checkout@v4
21+
22+
- name: Use Node.js ${{ matrix.node-version }}
23+
uses: actions/setup-node@v4
24+
with:
25+
node-version: ${{ matrix.node-version }}
26+
27+
- name: Build and test
28+
run: |
29+
npm ci
30+
npm t

0 commit comments

Comments
 (0)