Skip to content

CI

CI #179

Workflow file for this run

name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: ["main"]
pull_request:
branches: ["main"]
schedule:
- cron: "0 3 * * *"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- run: bun install
- name: Scrape step
run: "bun run scrape"
env:
CLIENT_ID: ${{ secrets.CLIENT_ID }}
- run: "bun run csv"
- uses: stefanzweifel/git-auto-commit-action@v5