Skip to content

npm run ve:RAM

npm run ve:RAM #579

Workflow file for this run

name: npm run ve:RAM
on:
schedule:
- cron: "0 1 * * *" # 1: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:RAM
- name: Commit changes
run: |
git config --global user.email "[email protected]"
git config --global user.name "oxSaturn"
git add .
git commit -m "Run ve:RAM"
git push