Skip to content

Commit 8313565

Browse files
committed
wip
1 parent 984c0f8 commit 8313565

File tree

6 files changed

+49
-11
lines changed

6 files changed

+49
-11
lines changed

.github/CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @basicdays

.github/dependabot.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
3+
updates:
4+
# see: https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/keeping-your-actions-up-to-date-with-github-dependabot
5+
- package-ecosystem: github-actions
6+
directory: "/"
7+
schedule:
8+
interval: daily
9+
reviewers:
10+
- basicdays

.github/workflows/build.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: "build"
2+
3+
on: [push]
4+
# on:
5+
# pull_request:
6+
# branches:
7+
# - master
8+
# - v0.2
9+
# push:
10+
# branches:
11+
# - master
12+
# - v0.2
13+
14+
jobs:
15+
build:
16+
runs-on: ubuntu-20.04
17+
strategy:
18+
matrix:
19+
node: ["12", "14", "16"]
20+
steps:
21+
- name: Checkout
22+
uses: actions/checkout@v3
23+
- name: Setup Node
24+
uses: actions/setup-node@v3
25+
with:
26+
node-version: ${{ matrix.node }}
27+
- run: npm install
28+
- run: npm run build
29+
- run: npm test

.mocharc.json

-4
This file was deleted.

.travis.yml

-7
This file was deleted.

package.json

+9
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,15 @@
106106
"browserslist": [
107107
"maintained node versions"
108108
],
109+
"mocha": {
110+
"require": [
111+
"./lib/test/index.js"
112+
],
113+
"spec": [
114+
"./lib/**/*.test.js",
115+
"./lib/test/**/*.js"
116+
]
117+
},
109118
"nyc": {
110119
"extends": "@istanbuljs/nyc-config-babel",
111120
"include": [

0 commit comments

Comments
 (0)