Skip to content

Commit

Permalink
chore: move unit test from travis ci to github actions (#129)
Browse files Browse the repository at this point in the history
chore: move unit test from travis ci to github actions
  • Loading branch information
kakhaUrigashvili committed Apr 16, 2020
1 parent 6532bea commit 6498135
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 28 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/unit-test.yml
@@ -0,0 +1,22 @@
name: Unit Test

on: [push]

jobs:
build:

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node: [8, 10, 12]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run lint
- run: npm run test:report
27 changes: 0 additions & 27 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -4,7 +4,7 @@
<h1 align="center">Alexa Skills Kit Command Line interface</h1>
<p align="center">
<a href="https://www.npmjs.com/package/ask-cli"><img src="https://badge.fury.io/js/ask-cli.svg"></a>
<a href="https://travis-ci.org/alexa/ask-cli"><img src="https://travis-ci.org/alexa/ask-cli.svg?branch=master"></a>
<a href="https://github.com/alexa/ask-cli/actions?query=workflow%3A%22Unit+Test%22"><img src="https://github.com/alexa/ask-cli/workflows/Unit%20Test/badge.svg?branch=master"></a>
</p>
<p align="center">
<a href="https://conventionalcommits.org"><img src="https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg"></a>
Expand Down

0 comments on commit 6498135

Please sign in to comment.