@internetarchive/histogram-date-range 0.1.7-a1 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,26 @@
1
+ name: App CI
2
+
3
+ on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
+ branches: [ main ]
8
+
9
+ jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+
13
+ steps:
14
+ - uses: actions/checkout@v3
15
+ - uses: actions/setup-node@v3
16
+ with:
17
+ node-version: 16.x
18
+
19
+ - name: Install dependencies
20
+ run: yarn install
21
+
22
+ - name: Run tests
23
+ run: yarn run test
24
+
25
+ - name: Upload reports
26
+ run: npx codecov
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@internetarchive/histogram-date-range",
3
- "version": "0.1.7-a1",
3
+ "version": "0.1.7",
4
4
  "description": "Internet Archive histogram date range picker",
5
5
  "license": "AGPL-3.0-only",
6
6
  "main": "dist/index.js",
package/.travis.yml DELETED
@@ -1,11 +0,0 @@
1
- language: node_js
2
- node_js:
3
- - node
4
- notifications:
5
- slack:
6
- secure: iN4wfdckaFjBhQrW37bYykzphDZszL8M4UmVFFLcqPTnr+3aczNMU+q1gJnM68GzSI0mTGol6AWlwC0IvvBi70xxJbrDgi/UuAE3Orpzd7TaUuc8rH5AdrYctyePSfCey16oy0F3QxA1fPso0S020R6x2kVLsfhzxRk0c/oCBWVliK5S4ALYKu9gfz3Tb/1jz7S7PXDR1VXgBDL5xctbQe+2LSsUO1GAl7mHVJefC9s72Vy2Db/suN/6wBFDmDgwOdbiTMWVi0Tg7gLuovjTlFJEfodHxPrf6zfUGTAECJLV3dscN9CitdFwOVFAK2HovBHbtH5ks2+/5tqZOzm0WFvy5sAuFHxcoHLkikLhx6M2qEqfaMvomoNJeXyClhuaSj7bexxLfTpzU2j0gikjeFJN8m5nkmOPDmWXfrB0YKie8/xK4ELlN4N3DkW7DjbAbfvwhVPexYqRrJr+g1nuAC75fv13GcTYuPIqREqgsVX92iRdnTWYA8JA5Bvpev4/w04JeW65zEbD+Xe5+f3QShfzE59biJI+NW8kyDMUApvUhOXYgwtu9iUB9LHDU0yMU5eyj5GojemiL9ag/D/ehFTXG4WvXzLThjQvhXc9BmXkFyYfCtd3EOCXjE6ooQDKufADKGSf5lGikTrOOgTFLozQpNi5+iv9mRlfmLrWHIE=
7
- install:
8
- - npm install
9
- - npm install -g codecov
10
- after_script:
11
- - codecov