Skip to content

Building insights

Building insights #742

Workflow file for this run

name: Building insights
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- run: npm install
working-directory: .github/workflows/insights
- run: node index.js
working-directory: .github/workflows/insights
env:
DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }}