We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f803ad commit 8d33ee1Copy full SHA for 8d33ee1
3 files changed
.github/workflows/tests.yml
@@ -27,4 +27,4 @@ jobs:
27
run: npm install
28
29
- name: Run Tests
30
- run: npm run build
+ run: npm run ci
benchmarks/config/default.mjs
@@ -3,7 +3,7 @@ export default {
3
parm_number_1: "from_default_mjs",
4
parm2: 22
5
},
6
- "AnotherModule": {
7
- "parm10": "value10"
+ AnotherModule: {
+ parm10: "value10"
8
}
9
};
package.json
@@ -57,7 +57,7 @@
57
"reporter": "lcov"
58
59
"scripts": {
60
- "build": "npm run test && npm run benchmarks",
+ "ci": "npm run test && npm run benchmarks",
61
"test": "NODE_OPTIONS='--no-experimental-strip-types' c8 node --test",
62
"benchmarks": "node --allow-natives-syntax benchmarks/index.js"
63
0 commit comments