We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b3c3dd commit 6260c71Copy full SHA for 6260c71
.github/workflows/build_test.yml
@@ -24,7 +24,6 @@ jobs:
24
uses: actions/setup-node@v3
25
with:
26
node-version: ${{ matrix.node-version }}
27
- cache: 'yarn'
28
- - run: yarn
29
- - run: yarn run build --if-present
30
- - run: yarn test
+ - run: npm ci
+ - run: npm run build --if-present
+ - run: npm test
package.json
@@ -19,7 +19,7 @@
19
"scripts": {
20
"build": "rollup -c --no-treeshake",
21
"watch": "rollup -c -w --no-treeshake",
22
- "pretest": "yarn build",
+ "pretest": "npm run build",
23
"test": "mocha --reporter spec",
"toThreeJS": "node converters/convertThreeJS.js",
"toOffline": "node converters/convertOfflineRenderer.js",
0 commit comments