Skip to content

Sync-Job

Sync-Job #14624

Workflow file for this run

# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: Sync-Job
on:
push:
branches:
- main
paths:
- "job/**"
schedule:
- cron: "0 * * * *"
env:
CONCURRENT_REQUESTS: 3
jobs:
sycn:
defaults:
run:
working-directory: job
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: setup node
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
cache-dependency-path: job
- run: npm ci
- run: npm start
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "Update daily puzzle files"