Skip to content

Commit

Permalink
CI migrated from Travis to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
timashev committed Jul 26, 2021
1 parent 43dd39a commit 4615d67
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 278 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/node.js.yml
@@ -0,0 +1,28 @@
name: Node.js CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: '12.x'
cache: 'yarn'
- run: yarn install
- run: yarn all

- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
# Human Logic or Common Sense

[![Build Status](https://travis-ci.org/arturania/human-logic.svg?branch=master)](https://travis-ci.org/arturania/human-logic) [![Coverage Status](https://coveralls.io/repos/github/arturania/human-logic/badge.svg?branch=master)](https://coveralls.io/github/arturania/human-logic?branch=master) ![NPM version](https://img.shields.io/npm/v/human-logic.svg) ![License](https://img.shields.io/github/license/arturania/human-logic.svg)
[![Build Status](https://github.com/arturania/human-logic/actions/workflows/node.js.yml/badge.svg)](https://github.com/arturania/human-logic/actions/workflows/node.js.yml) [![Coverage Status](https://coveralls.io/repos/github/arturania/human-logic/badge.svg?branch=master)](https://coveralls.io/github/arturania/human-logic?branch=master) ![NPM version](https://img.shields.io/npm/v/human-logic.svg) ![License](https://img.shields.io/github/license/arturania/human-logic.svg)

Human Logic (also known as “common sense”) is based on five categories:

Expand Down
2 changes: 1 addition & 1 deletion README.tex.md
@@ -1,6 +1,6 @@
# Human Logic or Common Sense

[![Build Status](https://travis-ci.org/arturania/human-logic.svg?branch=master)](https://travis-ci.org/arturania/human-logic) [![Coverage Status](https://coveralls.io/repos/github/arturania/human-logic/badge.svg?branch=master)](https://coveralls.io/github/arturania/human-logic?branch=master) ![NPM version](https://img.shields.io/npm/v/human-logic.svg) ![License](https://img.shields.io/github/license/arturania/human-logic.svg)
[![Build Status](https://github.com/arturania/human-logic/actions/workflows/node.js.yml/badge.svg)](https://github.com/arturania/human-logic/actions/workflows/node.js.yml) [![Coverage Status](https://coveralls.io/repos/github/arturania/human-logic/badge.svg?branch=master)](https://coveralls.io/github/arturania/human-logic?branch=master) ![NPM version](https://img.shields.io/npm/v/human-logic.svg) ![License](https://img.shields.io/github/license/arturania/human-logic.svg)

Human Logic (also known as “common sense”) is based on five categories:

Expand Down
3 changes: 1 addition & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "human-logic",
"version": "2.0.0",
"version": "2.0.1",
"description": "Human Logic",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -50,7 +50,6 @@
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.1",
"eslint": "^7.31.0",
"eslint-config-last": "^0.0.5",
"eslint-config-prettier": "^8.3.0",
Expand Down

0 comments on commit 4615d67

Please sign in to comment.