Clean Old Mocks #68
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Clean Old Mocks | |
| on: | |
| schedule: | |
| - cron: "30 18 * * *" | |
| workflow_dispatch: | |
| jobs: | |
| cleanup: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18 | |
| - name: Install mongoose | |
| run: npm install mongoose | |
| - name: Run cleanup script | |
| env: | |
| MONGO_URI: ${{ secrets.MONGO_URI }} | |
| run: node BackEnd/cleanUp.js |