Skip to content

Commit 9b4f954

Browse files
committed
Merge branch 'master' of https://github.com/Silver-birder/CaAT
2 parents 7cddefc + ef731a5 commit 9b4f954

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

.github/workflows/nodejs.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: main
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
strategy:
11+
matrix:
12+
node-version: [8.x, 10.x, 12.x]
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: Use Node.js ${{ matrix.node-version }}
17+
uses: actions/setup-node@v1
18+
with:
19+
node-version: ${{ matrix.node-version }}
20+
- run: npm install
21+
- run: npm build --if-present
22+
- run: npm test -- --coverage
23+
- uses: coverallsapp/github-action@master
24+
with:
25+
github-token: ${{ secrets.GITHUB_TOKEN }}
26+
env:
27+
CI: true

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
[![License: MIT](https://img.shields.io/npm/l/@silverbirder/caat.svg)](https://opensource.org/licenses/MIT)
2+
[![npm download](https://img.shields.io/npm/dt/@silverbirder/caat.svg)](https://www.npmjs.com/package/@silverbirder/caat)
3+
[![npm version](https://img.shields.io/npm/v/@silverbirder/caat)](https://www.npmjs.com/package/@silverbirder/caat)
4+
[![npm bundle size](https://img.shields.io/bundlephobia/min/@silverbirder/caat)](https://www.npmjs.com/package/@silverbirder/caat)
5+
[![github action](https://img.shields.io/github/workflow/status/Silver-birder/CaAT/main)](https://github.com/Silver-birder/CaAT/actions)
6+
[![Coverage Status](https://coveralls.io/repos/github/Silver-birder/CaAT/badge.svg?branch=master)](https://coveralls.io/github/Silver-birder/CaAT?branch=master)
7+
[![twitter](https://img.shields.io/twitter/url?style=social&url=https%3A%2F%2Ftwitter.com%2Fsilver_birder)](https://twitter.com/silver_birder)
8+
19
# CaAT
210
CaAT is the Google Apps Script Library that Calculate the Assigned Time in Google Calendar.
311

0 commit comments

Comments
 (0)