Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #56

Merged
merged 23 commits into from
Oct 9, 2019
Merged

Dev #56

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
name: MasterDeployCI
on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x, 12.x]
node-version: [10.x, 11.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -16,7 +18,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Install Packages
run: npm install
- name: Build project
run: npm run-script build
- name: Run Tests
run: export CI=true && npm run test
# - name: Deploy to GH Pages
# run: npm run deploy
run: export CI=true && npm run test -- --coverage
24 changes: 24 additions & 0 deletions .github/workflows/Continuous_Integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Dev_CI
on:
push:
branches-ignore:
- master

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 11.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: Install Packages
run: npm install && echo $TEST_SECRET
- name: Build project
run: npm run-script build
- name: Run Tests
run: export CI=true && npm run test -- --coverage
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# Test results
coverage/

# dependencies
/node_modules
/.pnp
Expand All @@ -21,3 +24,8 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*

package-lock.json

# config
config.js
24 changes: 0 additions & 24 deletions .travis.yml

This file was deleted.

Loading