Skip to content

Commit bcecd23

Browse files
committed
ci: debug
1 parent d8c09ae commit bcecd23

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/debug.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: debug
2+
3+
on:
4+
schedule:
5+
# Cron job every Monday at 12:00
6+
# https://crontab.guru/every-monday
7+
- cron: '* * * * *'
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v2
15+
- name: Setup Node.js
16+
uses: actions/setup-node@v2
17+
with:
18+
node-version: lts/*
19+
- name: Cron
20+
run: |
21+
echo GITHUB_REF IS $GITHUB_REF

0 commit comments

Comments
 (0)