diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..26b6714 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,26 @@ +name: OVL-MD Bot CI + +on: + push: + branches: [main] + pull_request: + branches: [main] + schedule: + - cron: '0 */5 * * *' + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + node-version: [20.x] + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + - run: | + sudo apt update + sudo apt install -y ffmpeg + npm i + - run: timeout 18300s npm run Ovl