Skip to content

Commit

Permalink
Merge pull request #52 from bbland1/bbland1-patch-1
Browse files Browse the repository at this point in the history
Create update-deps.yml
  • Loading branch information
bbland1 authored Aug 27, 2024
2 parents 6773001 + 9854e5c commit c7a716f
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/update-deps.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: update-deps
on: create
jobs:
npm-update:
if: github.ref == 'refs/heads/main'
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- run: npm update --dev
- run: git rm -r --cached .github
- run: rm -rf .github/
- uses: EndBug/add-and-commit@latest
with:
add: "."
message: 'Update dependencies with "npm update"'
push: true

0 comments on commit c7a716f

Please sign in to comment.