File tree 3 files changed +28
-20
lines changed
3 files changed +28
-20
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on : [push]
4
+
5
+ jobs :
6
+ unit :
7
+ runs-on : ubuntu-latest
8
+
9
+ strategy :
10
+ matrix :
11
+ node-version : ['18', '20', '22']
12
+
13
+ steps :
14
+ - uses : actions/checkout@v4
15
+
16
+ - name : Use Node.js ${{ matrix.node-version }}
17
+ uses : actions/setup-node@v4
18
+ with :
19
+ node-version : ${{ matrix.node-version }}
20
+
21
+ - run : npm ci
22
+
23
+ - run : npm run lint
24
+
25
+ - run : npm test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# cross-spawn
2
2
3
- [ ![ NPM version] [ npm-image ]] [ npm-url ] [ ![ Downloads] [ downloads-image ]] [ npm-url ] [ ![ Build Status] [ travis -image]] [ travis -url] [ ![ Build status] [ appveyor-image ]] [ appveyor-url ] [ ![ Coverage Status] [ codecov-image ]] [ codecov-url ] [ ![ Dependency status ] [ david-dm-image ]] [ david-dm-url ] [ ![ Dev Dependency status ] [ david-dm-dev-image ]] [ david-dm-dev -url]
3
+ [ ![ NPM version] [ npm-image ]] [ npm-url ] [ ![ Downloads] [ downloads-image ]] [ npm-url ] [ ![ Build Status] [ ci -image]] [ ci -url] [ ![ Build status] [ appveyor-image ]] [ appveyor-url ] [ ![ Coverage Status] [ codecov-image ]] [ codecov-url ]
4
4
5
5
[ npm-url ] :https://npmjs.org/package/cross-spawn
6
6
[ downloads-image ] :https://img.shields.io/npm/dm/cross-spawn.svg
7
7
[ npm-image ] :https://img.shields.io/npm/v/cross-spawn.svg
8
- [ travis -url] :https://travis-ci.org /moxystudio/node- cross-spawn
9
- [ travis -image] :https://img.shields.io/travis/ moxystudio/node-cross-spawn/master .svg
8
+ [ ci -url] :https://github.com /moxystudio/cross-spawn/actions/workflows/ci.yaml
9
+ [ ci -image] :https://github.com/ moxystudio/node-cross-spawn/actions/workflows/ci.yaml/badge .svg
10
10
[ appveyor-url ] :https://ci.appveyor.com/project/satazor/node-cross-spawn
11
11
[ appveyor-image ] :https://img.shields.io/appveyor/ci/satazor/node-cross-spawn/master.svg
12
12
[ codecov-url ] :https://codecov.io/gh/moxystudio/node-cross-spawn
13
13
[ codecov-image ] :https://img.shields.io/codecov/c/github/moxystudio/node-cross-spawn/master.svg
14
- [ david-dm-url ] :https://david-dm.org/moxystudio/node-cross-spawn
15
- [ david-dm-image ] :https://img.shields.io/david/moxystudio/node-cross-spawn.svg
16
- [ david-dm-dev-url ] :https://david-dm.org/moxystudio/node-cross-spawn?type=dev
17
- [ david-dm-dev-image ] :https://img.shields.io/david/dev/moxystudio/node-cross-spawn.svg
18
14
19
15
A cross platform solution to node's spawn and spawnSync.
20
16
21
-
22
17
## Installation
23
18
24
19
Node.js version 8 and up:
You can’t perform that action at this time.
0 commit comments