Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move to Github Actions for CI #53

Merged
merged 1 commit into from
Jan 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
on:
pull_request:
paths-ignore:
- '**.md'
push:
branches:
- main
paths-ignore:
- '**.md'


jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: lts/*
cache: 'npm'

- name: Install dependencies
run: npm ci

- name: Run test
run: npm test
1 change: 0 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
appveyor.yml
jsconfig.json
test
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
# LIFX LAN Node.js Library

[![NPM Version](https://img.shields.io/npm/v/lifx-lan-client.svg)](https://www.npmjs.com/package/lifx-lan-client)
[![Build Status](https://img.shields.io/travis/MariusRumpf/lifx-lan-client/master.svg)](https://travis-ci.org/MariusRumpf/lifx-lan-client)
[![Build status](https://img.shields.io/appveyor/ci/MariusRumpf/lifx-lan-client/master.svg)](https://ci.appveyor.com/project/MariusRumpf/lifx-lan-client)
[![Dependency Status](https://dependencyci.com/github/MariusRumpf/lifx-lan-client/badge)](https://dependencyci.com/github/MariusRumpf/lifx-lan-client)
[![codecov.io](https://img.shields.io/codecov/c/github/MariusRumpf/lifx-lan-client/master.svg)](https://codecov.io/github/MariusRumpf/lifx-lan-client?branch=master)
[![Gitter Chat](https://img.shields.io/gitter/room/lifx-lan-client/Lobby.svg)](https://gitter.im/lifx-lan-client/Lobby)

ristomatti marked this conversation as resolved.
Show resolved Hide resolved

A Node.js implementation of the [LIFX protocol](https://github.com/LIFX/lifx-protocol-docs). Developed to work with a minimum firmware version of 2.0.

Expand Down
28 changes: 0 additions & 28 deletions appveyor.yml

This file was deleted.