Skip to content

schedule-test

schedule-test #1576

Workflow file for this run

name: "schedule-test"
on:
schedule:
- cron: '0 10 * * *'
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- id: checkout
uses: actions/checkout@v4
- id: build
run: |
npm install
npm run all
- uses: ./
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
channel: '#actions'
if: always()