Skip to content

Commit 13ee112

Browse files
committed
adding workflow
1 parent 4202ed6 commit 13ee112

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

.github/workflows/execution-flow.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ jobs:
1212
node-version: 18
1313
exclude:
1414
- os: windows-latest
15-
node-version: 12
1615
runs-on: ${{ matrix.os }}
1716
steps:
1817
- name: checkout
@@ -26,4 +25,6 @@ jobs:
2625
npm ci
2726
- name: build node
2827
run: |
29-
npm run build
28+
npm run build
29+
- name: deploy workflow
30+
uses: ./.github/workflows/reusable.yml

.github/workflows/reusable.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: reusable-workflow
2+
on: workflow_call
3+
jobs:
4+
deploy:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: deploy workflow
8+
run: |
9+
echo "deploying and uploading artifact"

0 commit comments

Comments
 (0)