Skip to content

npm run ve:FVM

npm run ve:FVM #345

Workflow file for this run

name: npm run ve:FVM
on:
schedule:
- cron: "1 0 * * *" # 10:00 AM UTC
workflow_dispatch:
jobs:
run-script:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: npm install
- name: Run script
run: npm run ve:FVM
- name: Commit changes
run: |
git config --global user.email "[email protected]"
git config --global user.name "oxSaturn"
git add .
git commit -m "Run ve:FVM"
git push