-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #154 from kmkzt/release/v2
- Loading branch information
Showing
26 changed files
with
4,339 additions
and
4,974 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: CI | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [10.x, 12.13.0] | ||
|
||
steps: | ||
- name: Begin CI... | ||
uses: actions/checkout@v2 | ||
|
||
- name: Use Node ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Use cached node_modules | ||
uses: actions/cache@v1 | ||
with: | ||
path: node_modules | ||
key: nodeModules-${{ hashFiles('**/yarn.lock') }} | ||
restore-keys: | | ||
nodeModules- | ||
- name: Install dependencies | ||
# TODO: add check yarn.lock | ||
# run: yarn install --frozen-lockfile | ||
run: yarn install | ||
env: | ||
CI: true | ||
|
||
- name: Lint | ||
run: yarn lint | ||
env: | ||
CI: true | ||
|
||
- name: Test | ||
run: yarn test | ||
env: | ||
CI: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
{ | ||
"lib/index.esm.js": { | ||
"bundled": 10395, | ||
"minified": 6137, | ||
"gzipped": 1996, | ||
"bundled": 19496, | ||
"minified": 12201, | ||
"gzipped": 3683, | ||
"treeshaked": { | ||
"rollup": { | ||
"code": 15, | ||
"import_statements": 15 | ||
"code": 65, | ||
"import_statements": 0 | ||
}, | ||
"webpack": { | ||
"code": 1022 | ||
"code": 1016 | ||
} | ||
} | ||
}, | ||
"lib/index.cjs.js": { | ||
"bundled": 13330, | ||
"minified": 7500, | ||
"gzipped": 2305 | ||
"bundled": 25826, | ||
"minified": 14794, | ||
"gzipped": 4304 | ||
}, | ||
"lib/index.min.js": { | ||
"bundled": 6174, | ||
"minified": 6162, | ||
"gzipped": 2089 | ||
"bundled": 11963, | ||
"minified": 11954, | ||
"gzipped": 3738 | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.