Skip to content

Commit

Permalink
Merge pull request #372 from eweitz/github-actions
Browse files Browse the repository at this point in the history
Migrate to GitHub Actions
  • Loading branch information
eweitz authored Aug 15, 2024
2 parents 9c64d13 + e0608a8 commit b8fda91
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 11 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: CI

on:
push:
branches:
- github-actions
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-22.04

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'

- name: Set up Chrome
uses: browser-actions/setup-chrome@v1
with:
chrome-version: stable

- name: Install dependencies
run: npm install

- name: Run tests
run: npm test

- name: Coveralls
uses: coverallsapp/github-action@v2
11 changes: 0 additions & 11 deletions .travis.yml

This file was deleted.

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# ideogram
[![Tests](https://github.com/eweitz/ideogram/actions/workflows/ci.yml/badge.svg)](https://github.com/eweitz/ideogram/actions/workflows/ci.yml)
[![Coverage status](https://coveralls.io/repos/github/eweitz/ideogram/badge.svg?branch=master)](https://coveralls.io/github/eweitz/ideogram?branch=master)

[Ideogram.js](https://eweitz.github.io/ideogram/) is a JavaScript library for [chromosome visualization](https://speakerdeck.com/eweitz/designing-genome-visualizations-with-ideogramjs).

Expand Down

0 comments on commit b8fda91

Please sign in to comment.