Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
siibra-explorer
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiao Gui
siibra-explorer
Commits
1bfcf7e8
Commit
1bfcf7e8
authored
4 years ago
by
Xiao Gui
Browse files
Options
Downloads
Patches
Plain Diff
rerun gha actions
parent
948c2f4d
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.github/workflows/backend.yml
+0
-28
0 additions, 28 deletions
.github/workflows/backend.yml
.github/workflows/e2e.yml
+1
-4
1 addition, 4 deletions
.github/workflows/e2e.yml
.github/workflows/frontend.yml
+0
-24
0 additions, 24 deletions
.github/workflows/frontend.yml
with
1 addition
and
56 deletions
.github/workflows/backend.yml
deleted
100644 → 0
+
0
−
28
View file @
948c2f4d
name
:
Backend tests
on
:
[
push
]
env
:
NODE_ENV
:
test
jobs
:
install_dep
:
if
:
"
!contains(github.event.head_commit.message,
'[skip
ci]')"
runs-on
:
ubuntu-latest
strategy
:
matrix
:
node-version
:
[
10.x
,
12.x
]
steps
:
-
uses
:
actions/checkout@v1
-
name
:
Use Node.js ${{ matrix.node-version }}
uses
:
actions/setup-node@v1
with
:
node-version
:
${{ matrix.node-version }}
-
name
:
cd into deploy, npm install
run
:
|
cd deploy
npm i
-
name
:
test
run
:
|
cd deploy
npm run test
\ No newline at end of file
This diff is collapsed.
Click to expand it.
.github/workflows/e2e.yml
+
1
−
4
View file @
1bfcf7e8
...
...
@@ -3,9 +3,6 @@ name: "[e2e] prod-specs"
on
:
workflow_dispatch
:
inputs
:
branch
:
required
:
true
default
:
dev
url
:
required
:
true
default
:
https://interactive-viewer-next.apps-dev.hbp.eu/
...
...
@@ -40,7 +37,7 @@ jobs:
steps
:
-
uses
:
actions/checkout@v2
with
:
ref
:
${{ github.event.
inputs.branch
}}
ref
:
${{ github.event.
ref
}}
-
name
:
Install dep
run
:
|
...
...
This diff is collapsed.
Click to expand it.
.github/workflows/frontend.yml
deleted
100644 → 0
+
0
−
24
View file @
948c2f4d
name
:
Frontend Tests (Karma + Mocha + Chai)
on
:
[
push
]
jobs
:
build
:
if
:
"
!contains(github.event.head_commit.message,
'[skip
ci]')"
runs-on
:
ubuntu-latest
strategy
:
matrix
:
node-version
:
[
10.x
,
12.x
]
steps
:
-
uses
:
actions/checkout@v1
-
name
:
Use Node.js ${{ matrix.node-version }}
uses
:
actions/setup-node@v1
with
:
node-version
:
${{ matrix.node-version }}
-
name
:
npm install and test
run
:
|
npm i
npm run lint
npm test
env
:
NODE_ENV
:
test
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment