Skip to content

Commit f6f5c6c

Browse files
committed
CI fix
1 parent bedebc7 commit f6f5c6c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- run: npm install
3636
- name: Run coverage
3737
run: |
38-
npm run build
38+
npm run build:ci
3939
npm run test:coverage
4040
- name: Run browser tests
4141
if: ${{ github.secret_source == 'Actions' }}

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,8 @@
99
},
1010
"scripts": {
1111
"build": "npm run build --workspaces",
12-
"build:ci": "run-s build:packages build:test",
13-
"build:packages": "for dir in `ls packages` ; do cd packages/${dir} && npm run build && cd ../.. ; done",
1412
"build:test": "rollup -c rollup.config.js",
13+
"build:ci": "run-s build build:test",
1514
"clean": "rm -rf dist",
1615
"copy": "copyfiles -u 3 packages/*/dist/*.js packages/*/dist/*/LICENSE dist",
1716
"copy:license": "copyfiles LICENSE dist",

0 commit comments

Comments
 (0)