Skip to content

Commit

Permalink
Merge pull request #283 from lhansford/update-node-versions
Browse files Browse the repository at this point in the history
Update build step to use Node 16
  • Loading branch information
lhansford authored Mar 18, 2023
2 parents d735a27 + a70e8e8 commit 80c7242
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@ updates:
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
5 changes: 3 additions & 2 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ jobs:
steps:
- uses: actions/checkout@v2
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v1
- uses: actions/setup-node@v3
with:
node-version: '12.x'
node-version: '16'
check-latest: true
registry-url: 'https://registry.npmjs.org'
- run: yarn install
- run: npm publish
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-to-text",
"version": "2.0.0",
"version": "2.0.1",
"description": "Convert react components to plain text without any HTML markup",
"keywords": [
"react",
Expand Down

0 comments on commit 80c7242

Please sign in to comment.