-
Notifications
You must be signed in to change notification settings - Fork 0
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 #12 from gregoranders/development
0.0.4 Release
- Loading branch information
Showing
18 changed files
with
325 additions
and
100 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -5,6 +5,10 @@ on: | |
branches: | ||
- master | ||
|
||
env: | ||
CI: true | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
|
@@ -26,37 +30,30 @@ jobs: | |
- name: npm install | ||
run: | | ||
npm install | ||
env: | ||
CI: true | ||
- name: code coverage | ||
if: matrix.os == 'ubuntu-latest' && matrix.node-version == '14.x' | ||
uses: coverallsapp/github-action@master | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
path-to-lcov: ./test/coverage/lcov.info | ||
- name: publish code coverage to code climate | ||
if: matrix.os == 'ubuntu-latest' && matrix.node-version == '14.x' | ||
uses: paambaati/[email protected] | ||
env: | ||
CI: true | ||
# - name: publish code coverage to code climate | ||
# if: matrix.os == 'ubuntu-latest' && matrix.node-version == '14.x' | ||
# uses: paambaati/[email protected] | ||
# env: | ||
# CI: true | ||
# CC_TEST_REPORTER_ID: ${{ secrets.CODE_CLIMATE }} | ||
# with: | ||
# coverageCommand: npm run test | ||
# coverageLocations: | | ||
# ./test/coverage/lcov.info:lcov | ||
# debug: true | ||
# - name: create release | ||
# if: matrix.os == 'ubuntu-latest' && matrix.node-version == '14.x' | ||
# id: createrelease | ||
# uses: gregoranders/[email protected] | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# PACKAGE_JSON: ${{ steps.projectinfo.outputs.context }} | ||
# with: | ||
# tag: v${{ steps.projectinfo.outputs.version }} | ||
# name: ${{ steps.projectinfo.outputs.version }} Release | ||
# body: ${{ steps.projectinfo.outputs.name }} - ${{ steps.projectinfo.outputs.version }} Release | ||
# target: ${{ github.ref }} | ||
# draft: true | ||
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | ||
with: | ||
coverageCommand: npm run test | ||
coverageLocations: | | ||
./test/coverage/lcov.info:lcov | ||
- name: create release | ||
if: matrix.os == 'ubuntu-latest' && matrix.node-version == '14.x' | ||
id: createrelease | ||
uses: gregoranders/[email protected] | ||
env: | ||
PACKAGE_JSON: ${{ steps.projectinfo.outputs.context }} | ||
with: | ||
tag: v${{ steps.projectinfo.outputs.version }} | ||
name: ${{ steps.projectinfo.outputs.version }} Release | ||
body: ${{ steps.projectinfo.outputs.name }} - ${{ steps.projectinfo.outputs.version }} Release | ||
target: ${{ github.ref }} | ||
draft: 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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Release CI | ||
|
||
on: | ||
release: | ||
types: | ||
- edited | ||
|
||
env: | ||
CI: true | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
node-version: [14.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: nodejs project information | ||
id: projectinfo | ||
uses: gregoranders/[email protected] | ||
- name: npm install | ||
run: | | ||
npm install | ||
- name: npm publish | ||
env: | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
run: | | ||
npm publish --access public |
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -9,5 +9,5 @@ library version | |
<b>Signature:</b> | ||
|
||
```typescript | ||
libversion = "0.0.3" | ||
libversion = "0.0.4" | ||
``` |
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
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 |
---|---|---|
|
@@ -9,5 +9,6 @@ returns rows | |
<b>Signature:</b> | ||
|
||
```typescript | ||
/** @virtual */ | ||
get rows(): readonly Row[]; | ||
``` |
Oops, something went wrong.