Skip to content

Commit

Permalink
Merge pull request #93 from chrishutchinson/feature/github-actions
Browse files Browse the repository at this point in the history
feat: setup GitHub actions for tests
  • Loading branch information
chrishutchinson authored May 1, 2021
2 parents 5f8b505 + c920eab commit fe98b1f
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 6 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Run tests

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [8.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
5 changes: 0 additions & 5 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,6 +1,6 @@
# CardKit 2

[![Build Status](https://travis-ci.org/times/cardkit.svg?branch=master)](https://travis-ci.org/times/cardkit) [![codecov](https://codecov.io/gh/times/cardkit/branch/master/graph/badge.svg)](https://codecov.io/gh/times/cardkit) [![Join the chat at https://gitter.im/times/cardkit](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/times/cardkit?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Join the chat at https://gitter.im/times/cardkit](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/times/cardkit?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

> A simple, powerful and fully configurable image editor for web browers and servers. Optional UI included.
Expand Down

0 comments on commit fe98b1f

Please sign in to comment.