Skip to content

Commit

Permalink
release 3.2.8 (#123)
Browse files Browse the repository at this point in the history
* release 3.2.8

* release 3.2.8
  • Loading branch information
abetomo committed Nov 23, 2020
1 parent 7a3c3ca commit e744374
Show file tree
Hide file tree
Showing 7 changed files with 528 additions and 493 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,19 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: npm publish
uses: actions/setup-node@v1
with:
node-version: '14.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm test
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}

- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand Down
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

Binary file removed .travis/github_deploy_key.enc
Binary file not shown.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,3 +132,5 @@
## [3.2.6] - 2020-10-21
## [3.2.7] - 2020-11-05
- Upgrade googleapis to 62.0.0 (#120)
## [3.2.8] - 2020-11-23
- Upgrade googleapis to 64 (#121)
5 changes: 0 additions & 5 deletions lib/__tests__/ss_to_json.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,6 @@ describe('ss2json', () => {
expect(ss2json).toBeInstanceOf(Ss2Json)
})

test('version should be set', () => {
const packageVersion = '3.2.7'
expect(ss2json.version()).toBe(packageVersion)
})

test('_arrayToObject', () => {
const array = [
['colname1', 'colname2'],
Expand Down
Loading

0 comments on commit e744374

Please sign in to comment.