Skip to content

Commit

Permalink
Merge pull request #13 from obg-lab/release/0.2.2
Browse files Browse the repository at this point in the history
Version 0.2.2
  • Loading branch information
egermano authored Aug 17, 2022
2 parents b155c64 + 7da0683 commit 4af170e
Show file tree
Hide file tree
Showing 7 changed files with 11,581 additions and 3,924 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/node-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: 12
- run: yarn
- run: yarn lint
- run: yarn test
- run: npm ci
- run: npm run lint
- run: npm run test

publish-npm:
needs: build
Expand All @@ -28,8 +28,8 @@ jobs:
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- run: yarn
- run: yarn publish --access public
- run: npm ci
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

Expand All @@ -42,7 +42,7 @@ jobs:
with:
node-version: 12
registry-url: https://npm.pkg.github.com/
- run: yarn
- run: yarn publish --access public
- run: npm ci
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.GH_TOKEN}}
8 changes: 4 additions & 4 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ jobs:

strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
node-version: [12.x, 14.x, 16.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn lint
- run: yarn test
- run: npm ci
- run: npm run lint
- run: npm run test

17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0] - 2020-08-11
## [0.2.2] - 2022-08-17

### Bug Fixes

- Runt `npm audit fix --force` to automatically upgrade vulnerable packages

### Changed

- Removed yarn and starting using npm by default
- Removed the `develop` branch from the repo

### Added

- Added another test case to ensure invalid channel id is handled correctly

## [0.2.1] - 2020-08-11

### Changed

Expand Down
Loading

0 comments on commit 4af170e

Please sign in to comment.