Skip to content

Commit ac08ff7

Browse files
authored
add github workflow (#5)
1 parent 4a47682 commit ac08ff7

File tree

4 files changed

+39
-42
lines changed

4 files changed

+39
-42
lines changed

.c9build.sh

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Build
2+
on:
3+
push:
4+
schedule:
5+
- cron: '0 1 * * 0'
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-18.04
10+
steps:
11+
- uses: actions/setup-node@v1
12+
with:
13+
node-version: '6'
14+
- uses: actions/checkout@v2
15+
with:
16+
fetch-depth: 50
17+
- uses: testspace-com/setup-testspace@v1
18+
with:
19+
domain: samples
20+
- name: Install
21+
run: |
22+
npm install -g gulp
23+
npm install
24+
- name: Test
25+
run: |
26+
gulp build
27+
- name: Push
28+
run: |
29+
testspace @.testspace.txt
30+
if: always()

readme.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ Sample demonstrates techniques for using Testspace with Javascript code and the
88

99
* Using a Testspace Project that is `connected` with this GitHub Repo
1010
* Using 3 Online CI services for demonstration purposes only
11-
* Can review the Results at [testspace-samples:javascript.jasmine](https://samples.testspace.com/projects/testspace-samples:javascript.jasmine)
12-
* Refer to our [Getting Started](https://help.testspace.com/getting-started) help articles for more information
11+
* Can review the Results at [testspace-samples:javascript.jasmine](https://samples.testspace.com/projects/testspace-samples:javascript.jasmine)
12+
* Refer to our [Help](https://help.testspace.com/) for more information
1313

14-
***
14+
***
1515

1616
Using Multiple Online CI Services:
1717

18+
![Build](https://github.com/testspace-samples/javascript.jasmine/workflows/Build/badge.svg)
1819
[![Build Status](https://travis-ci.org/testspace-samples/javascript.jasmine.svg?branch=master)](https://travis-ci.org/testspace-samples/javascript.jasmine)
1920
[![CircleCI](https://circleci.com/gh/testspace-samples/javascript.jasmine.svg?style=svg)](https://circleci.com/gh/testspace-samples/javascript.jasmine)
20-
[![Run Status](https://api.shippable.com/projects/5707eeda2a8192902e1bd7b4/badge?branch=master)](https://app.shippable.com/github/testspace-samples/javascript.jasmine)
2121

22-
***
22+
***
2323
Publishing **Test Content** using www.testspace.com.
2424

2525
[![Space Health](https://samples.testspace.com/spaces/804/badge?token=92bafa7b581dddbf949ba27529b021e97c8c202e)](https://samples.testspace.com/spaces/804 "Test Cases")
@@ -29,7 +29,7 @@ Publishing **Test Content** using www.testspace.com.
2929

3030
***
3131

32-
Download and configure the Testspace client
32+
Download and configure the Testspace client
3333

3434
<pre>
3535
mkdir -p $HOME/bin
@@ -45,9 +45,9 @@ npm install
4545
gulp build
4646
</pre>
4747

48-
Push Content using Testspace client
48+
Push Content using Testspace client
4949

5050
<pre>
51-
testspace @.testspace.txt
52-
</pre>
51+
testspace @.testspace.txt
52+
</pre>
5353

shippable.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)