Skip to content

Commit

Permalink
fix(workflow-:(): add in checkout flow
Browse files Browse the repository at this point in the history
  • Loading branch information
seaerchin committed Feb 19, 2024
1 parent 6317645 commit f33aca6
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,19 @@ jobs:
needs: [gatekeep]
if: needs.gatekeep.outputs.proceed == 'true'
steps:
- name: Deploy to ECS
uses: ./.github/workflows/deploy_prod.yml

- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Cache Node.js modules
uses: actions/cache@v2
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Deploy to ECS
uses: ./.github/workflows/deploy_prod.yml

0 comments on commit f33aca6

Please sign in to comment.