mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-04 01:30:15 +01:00
0f0e27179b
Github actions work fine, we no longer needs travi-ci to trigger the tests. This commit removes it. Signed-off-by: Daniel Jiang <jiangd@vmware.com>
9 lines
175 B
Bash
Executable File
9 lines
175 B
Bash
Executable File
#!/bin/bash
|
|
set -x
|
|
set -e
|
|
|
|
cd ./src/portal
|
|
npm install -g -q --no-progress @angular/cli
|
|
npm install -g -q --no-progress karma
|
|
npm install -q --no-progress
|
|
npm run test && cd - |