Skip to content

Commit 8f3d0cd

Browse files
committed
fix(CI): First test no env variable
1 parent 5046762 commit 8f3d0cd

File tree

5 files changed

+11258
-5520
lines changed

5 files changed

+11258
-5520
lines changed

.circleci/config.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
version: 2
2+
jobs:
3+
test:
4+
docker:
5+
- image: circleci/node:latest
6+
steps:
7+
# TODO
8+
9+
release:
10+
docker:
11+
- image: circleci/node:latest
12+
steps:
13+
- checkout
14+
- run: npm install
15+
- run: npm run build
16+
- run: npx semantic-release
17+
18+
workflows:
19+
version: 2
20+
test_and_release:
21+
# Run the test jobs first, then the release only when all the test jobs are successful
22+
jobs:
23+
- test
24+
- release:
25+
requires:
26+
- test

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
"build": "rollup -c build/rollup.config.js",
88
"lint": "vue-cli-service lint"
99
},
10-
"main": "dist/vue-universal-lib-example.cjs.js",
11-
"browser": "dist/vue-universal-lib-example.esm.js",
12-
"unpkg": "dist/vue-universal-lib-example-VERSION.global.js",
13-
"jsdelivr": "dist/vue-universal-lib-example.global.js",
14-
"module": "dist/vue-universal-lib-example.esm-bundler.js",
15-
"types": "dist/vue-universal-lib-example.d.ts",
10+
"main": "dist/vue-datatable-url-sync.cjs.js",
11+
"browser": "dist/vue-datatable-url-sync.esm.js",
12+
"unpkg": "dist/vue-datatable-url-sync-VERSION.global.js",
13+
"jsdelivr": "dist/vue-datatable-url-sync.global.js",
14+
"module": "dist/vue-datatable-url-sync.esm-bundler.js",
15+
"types": "dist/vue-datatable-url-sync.d.ts",
1616
"dependencies": {
1717
"lodash.clonedeep": "^4.5.0",
1818
"lodash.debounce": "^4.0.8",

0 commit comments

Comments
 (0)