Skip to content

Change trigger to cron schedule #7

Change trigger to cron schedule

Change trigger to cron schedule #7

Workflow file for this run

name: hello-world
on: push
jobs:
test-job:
runs-on: ubuntu-latest
steps:
- name: Hello world step
run: echo "🐧 Hello World!"
- name: Check out repository code
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: List files in the repository
run: |
ls ${{ github.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm ci
- name: Build with Next.js
run: npm run build