Skip to content

Commit 9f57d49

Browse files
authored
Merge pull request #264 from sas-fossdev/enh/noid/ci-change
Switch to GitHub Workflows
2 parents 011171d + 8ce5378 commit 9f57d49

File tree

4 files changed

+100
-30
lines changed

4 files changed

+100
-30
lines changed

.github/workflows/chromium.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Chromium Build Test
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- master
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
strategy:
14+
matrix:
15+
node-versions: [12.x]
16+
17+
name: node${{ matrix.node-versions }}
18+
steps:
19+
- uses: actions/checkout@v2
20+
with:
21+
fetch-depth: 0
22+
23+
- name: Set up node ${{ matrix.node-versions }}
24+
uses: actions/setup-node@v1
25+
with:
26+
node-version: ${{ matrix.node-versions }}
27+
28+
- name: Install dependencies & test & build
29+
run: |
30+
npm ci
31+
npm test
32+
npm run libraries
33+
npm run webpack:build:chromium
34+
npm run test:build

.github/workflows/firefox.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Firefox Build Test
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- master
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
strategy:
14+
matrix:
15+
node-versions: [12.x]
16+
17+
name: node${{ matrix.node-versions }}
18+
steps:
19+
- uses: actions/checkout@v2
20+
with:
21+
fetch-depth: 0
22+
23+
- name: Set up node ${{ matrix.node-versions }}
24+
uses: actions/setup-node@v1
25+
with:
26+
node-version: ${{ matrix.node-versions }}
27+
28+
- name: Install dependencies & test & build
29+
run: |
30+
npm ci
31+
npm test
32+
npm run libraries
33+
npm run webpack:build:firefox
34+
npm run test:build

.github/workflows/scripts.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Scripts Test
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- master
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
strategy:
14+
matrix:
15+
node-versions: [12.x]
16+
17+
name: node${{ matrix.node-versions }}
18+
steps:
19+
- uses: actions/checkout@v2
20+
21+
- name: Set up node ${{ matrix.node-versions }}
22+
uses: actions/setup-node@v1
23+
with:
24+
node-version: ${{ matrix.node-versions }}
25+
26+
- name: Install dependencies & test & build
27+
env:
28+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29+
run: |
30+
cd scripts
31+
npm i
32+
npm start -- -

.travis.yml

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

0 commit comments

Comments
 (0)