Skip to content

NPM Packages Updated #1

NPM Packages Updated

NPM Packages Updated #1

Workflow file for this run

name: Format Code
on: [push, pull_request]
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Dependencies Update Check
run: npm install -g npm-check-updates
- name: Dependecies AutoUpdate
run: |
npx npm-check-updates -u
npm install
- name: Commit changes
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git add .
git commit -m 'Dependencies Updated'
git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
continue-on-error: true