remove test for build/

This commit is contained in:
Jordan Scales 2020-04-24 07:39:28 -04:00
parent 8a123f39b1
commit 6b380f0bb9
3 changed files with 0 additions and 16 deletions

View file

@ -1,3 +0,0 @@
language: node_js
node_js:
- 12

View file

@ -7,7 +7,6 @@
"doc": "docs" "doc": "docs"
}, },
"scripts": { "scripts": {
"test": "sh test.sh",
"build": "node build.js" "build": "node build.js"
}, },
"repository": { "repository": {

12
test.sh
View file

@ -1,12 +0,0 @@
#!/bin/sh
npm run build
output=$( git diff build docs )
if [ -z "$output" ]
then
break
else
echo "Please commit the latest build of 98.css (git commit)"
exit 1;
fi