-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (44 loc) · 1.22 KB
/
pipeline.yaml
File metadata and controls
57 lines (44 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Run pipeline
on:
schedule:
- cron: "0 12 * * *"
workflow_dispatch:
env:
FORCE_COLOR: true
jobs:
pipeline:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Set up Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: SSH debug
if: runner.debug == '1'
uses: mxschmitt/action-tmate@v3
- name: Install packages
run: ./run.sh --install
- name: Install Playwright
run: ./run.sh --install-playwright
- name: Run pipeline
run: xvfb-run ./run.sh
env:
AUTH_ENTREZ: ${{ secrets.AUTH_ENTREZ }}
CACHE: ${{ inputs.cache && 'true' || '' }}
- name: Commit files
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Update files
commit_author: "Bot <>"
- name: Trigger private repo
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.AUTH_PRIVATE }}
repository: nih-cfde/icc-eval-core-private
event-type: pipeline