Skip to content

.github/workflows/nightly.yml #466

.github/workflows/nightly.yml

.github/workflows/nightly.yml #466

Workflow file for this run

on:
schedule:
- cron: "0 0 * * *"
push:
branches:
- main
jobs:
build:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: main
- uses: actions/setup-node@v4
with:
node-version: "18"
registry-url: "https://registry.npmjs.org"
- run: cd src && npm ci && npm start
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- uses: EndBug/add-and-commit@v9
with:
default_author: github_actions