Skip to content

Commit 3cb2e45

Browse files
committed
CI
1 parent 44341d8 commit 3cb2e45

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/graphs_ci.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Graphs CI
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: [main]
7+
workflow_dispatch:
8+
9+
jobs:
10+
tests:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
working-directory: [./graphs/omen-thumbnailmapping]
15+
steps:
16+
- uses: actions/checkout@v4
17+
- uses: actions/setup-node@v4
18+
with:
19+
node-version: 21
20+
- name: Run graph tests for ${{ matrix.working-directory }}
21+
run: graph test -l -f
22+
working-directory: ${{ matrix.working-directory }}

0 commit comments

Comments
 (0)