mirror of
https://github.com/jakejarvis/website-stats.git
synced 2025-04-26 07:35:21 -04:00
18 lines
320 B
YAML
18 lines
320 B
YAML
name: Daily snapshot
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 4 * * *' # run every day at 4 AM
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
snapshot:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 16
|
|
- run: yarn install
|
|
- run: yarn run snapshot
|