Skip to content

Commit

Permalink
Added secuencial deploy workflows modificaction
Browse files Browse the repository at this point in the history
agarciamears committed Dec 3, 2024
1 parent 398f36c commit 2356f62
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/deployment2.yml
Original file line number Diff line number Diff line change
@@ -11,6 +11,8 @@ jobs:
- name: Lint
run: npm run lint
test:
#Agregando secuencial "Despúes de Lint"
needs: lint
runs-on: ubuntu-latest
steps:
- name: Checkout
@@ -20,6 +22,8 @@ jobs:
- name: Test
run: npm test
deploy:
#Agregando secuencial "Despúes de Test"
needs: test
runs-on: ubuntu-latest
steps:
- name: Checkout

0 comments on commit 2356f62

Please sign in to comment.