Skip to content

Commit 9860e2c

Browse files
committed
Adds script that tests publishing
1 parent 94f5b77 commit 9860e2c

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
language: node_js
22
node_js:
3-
- '4.4'
4-
- '5.7'
5-
- '6.1'
3+
- '6.11'
4+
- '8.8'
5+
before_script: ./scripts/before_script.sh
66
cache:
77
directories:
88
- node_modules

scripts/before_script.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/sh
2+
test -f Parse-Dashboard/public/bundles/dashboard.bundle.js || exit 1
3+
test -f Parse-Dashboard/public/bundles/login.bundle.js || exit 1
4+
test -f Parse-Dashboard/public/bundles/sprites.svg || exit 1
5+
test -d Parse-Dashboard/public/bundles/img || exit 1

0 commit comments

Comments
 (0)