Skip to content

Commit 6260c71

Browse files
committed
goodbye yarn
1 parent 1b3c3dd commit 6260c71

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/build_test.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
uses: actions/setup-node@v3
2525
with:
2626
node-version: ${{ matrix.node-version }}
27-
cache: 'yarn'
28-
- run: yarn
29-
- run: yarn run build --if-present
30-
- run: yarn test
27+
- run: npm ci
28+
- run: npm run build --if-present
29+
- run: npm test

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"scripts": {
2020
"build": "rollup -c --no-treeshake",
2121
"watch": "rollup -c -w --no-treeshake",
22-
"pretest": "yarn build",
22+
"pretest": "npm run build",
2323
"test": "mocha --reporter spec",
2424
"toThreeJS": "node converters/convertThreeJS.js",
2525
"toOffline": "node converters/convertOfflineRenderer.js",

0 commit comments

Comments
 (0)