Skip to content

Commit 7dd2282

Browse files
sonicoder86ngabor84
andcommitted
chore(dev): add dev workflow
EME-5173 Co-authored-by: Gabor Nemeth <gabor.nemeth@emarsys.com>
1 parent fc1cacd commit 7dd2282

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/dev.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Development
2+
3+
on:
4+
push:
5+
branches: [ '*', '*/*', '**', '!master', '!main' ]
6+
pull_request:
7+
branches: [ master, main ]
8+
9+
jobs:
10+
init:
11+
name: Init
12+
uses: ./.github/workflows/_init.yml
13+
14+
test:
15+
name: Test
16+
uses: ./.github/workflows/_test.yml
17+
needs: [ init ]
18+
with:
19+
NODE_VERSION: ${{ needs.init.outputs.NODE_VERSION }}
20+
NODE_CACHE_KEY: ${{ needs.init.outputs.NODE_CACHE_KEY }}

0 commit comments

Comments
 (0)