Skip to content

runTheFile

runTheFile #292

Workflow file for this run

name: runTheFile
on:
workflow_dispatch:
schedule:
- cron: "0 0,5,10,15,20 * * *"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Installing dependencies...
run: npm install
- name: Try to run file
run: npm run run
env:
CI: true
TOKEN: ${{ secrets.TOKEN }}