Skip to content
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.

Cleanup database

Cleanup database #447

Workflow file for this run

name: Cleanup database
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
build:
name: Cleanup database
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '16.x'
- name: Install Dependencies
run: yarn install
- name: Cleanup database
run: yarn scripts:db-cleanup
env:
DB_CONNECTION_STRING: ${{ secrets.DB_CONNECTION_STRING }}