File tree Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
+
1
9
# CaAT
2
10
CaAT is the Google Apps Script Library that Calculate the Assigned Time in Google Calendar.
3
11
You can’t perform that action at this time.
0 commit comments