Skip to content

Commit

Permalink
Merge PR #484 'tuxcanfly/use-github-workflows'
Browse files Browse the repository at this point in the history
  • Loading branch information
pinheadmz committed Aug 7, 2020
2 parents 940f463 + 04a5393 commit f368acb
Show file tree
Hide file tree
Showing 5 changed files with 854 additions and 70 deletions.
61 changes: 0 additions & 61 deletions .circleci/config.yml

This file was deleted.

37 changes: 37 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Build

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

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [10.x, 12.x, 14.x]

steps:

- uses: actions/checkout@v2
- name: Setup
uses: actions/setup-node@v1

- name: Install
run: sudo apt-get install -y libunbound-dev |
npm install nyc coveralls

- name: Lint
run: npm run lint

- name: Test
run: npm run test-ci

- name: Coverage
uses: coverallsapp/github-action@v1.1.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# HSD

[![Build Status][circleci-status-img]][circleci-status-url]
[![Build Status][ci-status-img]][ci-status-url]
[![Coverage Status][coverage-status-img]][coverage-status-url]

__HSD__ is an implementation of the [Handshake][handshake] Protocol.
Expand Down Expand Up @@ -458,7 +458,7 @@ See LICENSE for more info.
[unbound]: https://www.nlnetlabs.nl/projects/unbound/download/
[hnsd]: https://github.com/handshake-org/hnsd
[airdrop]: https://github.com/handshake-org/hs-airdrop
[coverage-status-img]: https://codecov.io/gh/handshake-org/hsd/badge.svg?branch=master
[coverage-status-url]: https://codecov.io/gh/handshake-org/hsd?branch=master
[circleci-status-img]: https://circleci.com/gh/handshake-org/hsd/tree/master.svg?style=shield
[circleci-status-url]: https://circleci.com/gh/handshake-org/hsd/tree/master
[coverage-status-img]: https://coveralls.io/repos/github/handshake-org/hsd/badge.svg?branch=master
[coverage-status-url]: https://coveralls.io/github/handshake-org/hsd?branch=master
[ci-status-img]: https://github.com/handshake-org/hsd/workflows/Build/badge.svg
[ci-status-url]: https://github.com/handshake-org/hsd/tree/master
Loading

0 comments on commit f368acb

Please sign in to comment.