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

Add coveralls support #46

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions .coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
repo_token: 3Q25iLYW7a8SLENCZpn3jgLuxERprvLvd
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,8 @@ jobs:
cmd: install
- uses: borales/[email protected]
with:
cmd: test
cmd: test --coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# CalendarToSlack

[![Coverage Status](https://coveralls.io/repos/github/hudl/CalendarToSlack/badge.svg?branch=master)](https://coveralls.io/github/hudl/CalendarToSlack?branch=master)

CalendarToSlack is a Slack integration that updates your status and presence in Slack whenever you're in an event according to Outlook. In a nutshell, it can:

- Set custom status messages and emoji based on your event names, once configured
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"@types/jest": "^24.0.15",
"@types/node": "^12.6.2",
"@types/simple-oauth2": "^2.2.1",
"coveralls": "^3.1.0",
"jest": "^24.8.0",
"serverless": "^1.75.0",
"serverless-offline": "^5.7.3",
Expand Down
Loading