9 lines
92 B
Bash
Executable File
9 lines
92 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
git pull
|
|
npm run update-authors
|
|
git diff --exit-code
|
|
npm install
|
|
npm test
|