File tree Expand file tree Collapse file tree 4 files changed +21
-5
lines changed
Expand file tree Collapse file tree 4 files changed +21
-5
lines changed Original file line number Diff line number Diff line change @@ -19,14 +19,14 @@ jobs:
1919 name : Node.js ${{ matrix.node-version }} Test on ${{ matrix.operating-system }}
2020
2121 steps :
22- - uses : actions/checkout@v2
22+ - uses : actions/checkout@v3
2323 - name : Use Node.js ${{ matrix.node-version }}
24- uses : actions/setup-node@v1
24+ uses : actions/setup-node@v3
2525 with :
2626 node-version : ${{ matrix.node-version }}
2727 - run : npm install
2828 - run : npm run test-cov
29- - uses : codecov/codecov-action@v2
29+ - uses : codecov/codecov-action@v3
3030 with :
3131 name : codecov-node-cli # optional
3232 fail_ci_if_error : true # optional (default = false)
Original file line number Diff line number Diff line change 11'use strict' ;
22
33/**
4- * @author https://github.com/sindresorhus/camelcase
5- * @description reference source code for compatibility
4+ * ******************************************************
5+ * @author https://github.com/sindresorhus/camelcase *
6+ * @description reference source code for compatibility *
7+ * ******************************************************
68 */
79
810const UPPERCASE = / [ \p{ Lu} ] / u;
Original file line number Diff line number Diff line change 11'use strict' ;
22
3+ /**
4+ * ******************************************************
5+ * @author https://github.com/sindresorhus/os-locale *
6+ * @description reference source code for compatibility *
7+ * ******************************************************
8+ */
9+
310// Mini wrapper around `child_process` to make it behave a little like `execa`.
411
512const promisify = require ( 'util' ) . promisify ;
Original file line number Diff line number Diff line change 11'use strict' ;
22
3+ /**
4+ * ******************************************************
5+ * @author https://github.com/sindresorhus/os-locale *
6+ * @description reference source code for compatibility *
7+ * ******************************************************
8+ */
9+
310const lcid = require ( 'lcid' ) ;
411const { exec, execSync } = require ( './exec.js' ) ;
512
You can’t perform that action at this time.
0 commit comments