Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
bumblehead committed Oct 20, 2021
1 parent 9924cbd commit 6beb8f9
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 6,965 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ jobs:
- name: lint
uses: actions/setup-node@v2
with:
node-version: '15.x'
- run: npm ci
node-version: '16.x'
- run: npm install
- run: npm run lint
4 changes: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node-version: [15.x]
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand All @@ -25,6 +25,6 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm install
- run: npm run build --if-present
- run: npm test
12 changes: 6 additions & 6 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 15
- run: npm ci
node-version: 16
- run: npm install
- run: npm test

publish-npm:
Expand All @@ -25,9 +25,9 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 15
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm install
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
Expand All @@ -39,7 +39,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 15
node-version: 16
registry-url: https://npm.pkg.github.com/
- name: Insert repository owner as scope into package name
run: |
Expand All @@ -54,7 +54,7 @@ jobs:
process.exit(1);
});
EOF
- run: npm ci
- run: npm install
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 6.0.5 - 2021-10-20

* version bump
* remove `package-lock.json`, no depedencies so make bot and install warnings go away

## 6.0.4 - 2021-05-14

* remove un-used babel devDependencies
Expand Down
Loading

0 comments on commit 6beb8f9

Please sign in to comment.