Skip to content

Update node_modules #11

Update node_modules

Update node_modules #11

Workflow file for this run

name: Commit node_modules
on:
push:
branches:
- main
jobs:
commit-node-modules:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
with:
token: ${{ secrets.PAT }}
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install Dependencies
run: npm install
- name: Commit node_modules
run: |
git config --global user.email "[email protected]"
git config --global user.name "DonnieBLT"
git add node_modules
git commit -m "Update node_modules" || echo "No changes to commit"
git push origin HEAD:main