Skip to content

Commit

Permalink
Merge pull request #10 from ProteinsWebTeam/deps_bump_and_gh_actions
Browse files Browse the repository at this point in the history
Deps bump and gh actions
  • Loading branch information
gustavo-salazar committed Dec 8, 2020
2 parents db91070 + 57438c5 commit 41b9a01
Show file tree
Hide file tree
Showing 7 changed files with 6,274 additions and 4,501 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test_build_deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Test Build and Deploy

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '10'
- name: 🔧 - Install
run: |
npm ci
- name: 🧪 - Test
run: |
npm run test
- name: 🧥‍ - Coveralls
uses: coverallsapp/github-action@master
continue-on-error: true
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: './reports/jest-coverage/lcov.info'
- name: 🏗 - Build
run: |
npm run build
17 changes: 0 additions & 17 deletions .travis.yml

This file was deleted.

4 changes: 0 additions & 4 deletions example/index.template.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,6 @@
font-family: Arial;
}
</style>
<script
src="<%= htmlWebpackPlugin.files.chunks.main.entry %>"
defer
></script>
</head>

<body>
Expand Down
1 change: 0 additions & 1 deletion example/index_ce.template.html
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@
charset="utf-8"
></script>

<script src="<%= htmlWebpackPlugin.files.chunks.ce.entry %>" defer></script>
<script>
window.onload = () => {
const visualisation = document.getElementById('tree-root');
Expand Down
Loading

0 comments on commit 41b9a01

Please sign in to comment.