Skip to content

Commit

Permalink
Bump dependencies, swith to GH Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenyeargin committed May 26, 2022
1 parent 37a9bdb commit b32a1c8
Show file tree
Hide file tree
Showing 5 changed files with 3,483 additions and 1,635 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Node CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

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

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install
npm run build --if-present
npm test
env:
CI: true
11 changes: 0 additions & 11 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 @@
# Hubot StatusPage

[![npm version](https://badge.fury.io/js/hubot-statuspage.svg)](http://badge.fury.io/js/hubot-statuspage) [![Build Status](https://app.travis-ci.com/stephenyeargin/hubot-statuspage.png)](https://app.travis-ci.com/stephenyeargin/hubot-statuspage)
[![npm version](https://badge.fury.io/js/hubot-statuspage.svg)](http://badge.fury.io/js/hubot-statuspage) [![Node CI](https://github.com/stephenyeargin/hubot-statuspage/actions/workflows/nodejs.yml/badge.svg)](https://github.com/stephenyeargin/hubot-statuspage/actions/workflows/nodejs.yml)

Interaction with the StatusPage.io API to open and update incidents, change component status.

Expand Down
Loading

0 comments on commit b32a1c8

Please sign in to comment.