Skip to content

Commit

Permalink
Switch to Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sdreher committed Jan 12, 2021
1 parent f63f12a commit f4dc516
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 11 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: build-and-test
on: [push]
jobs:
build:
runs-on: ubuntu-18.04
strategy:
matrix:
node-version: [12.x, 14.x]
name: Node ${{ matrix.node }} run
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: npm install
- run: npm install
- name: Build with Makefile
run: make test
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stats Interactives

[![Build Status](https://travis-ci.org/ccnmtl/stats-interactives.svg?branch=master)](https://travis-ci.org/ccnmtl/stats-interactives)
[![Actions Status](https://github.com/ccnmtl/stats-interactives/workflows/build-and-test/badge.svg)](https://github.com/ccnmtl/stats-interactives/actions) ()

Stats interactives

0 comments on commit f4dc516

Please sign in to comment.