[13] Simplify and add Predeploy #12
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
branches: | |
- "**" | |
permissions: | |
pull-requests: write | |
name: 🌱 Plan, Build 🧪 | |
jobs: | |
TF-Apply: | |
name: 🏗️ Plan Infra | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Out | |
uses: actions/checkout@v4 | |
- name: Setup Terraform | |
uses: hashicorp/setup-terraform@v3 | |
with: | |
cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }} | |
terraform_version: 1.9.2 | |
- name: Look around nd Init 👁️👁️ | |
run: | | |
echo Looking around 👁️👁️ | |
ls | |
cd terraform | |
echo Looking around 👁️👁️ | |
ls | |
terraform init | |
- name: 🏗️ Terraform Plan | |
run: | | |
cd terraform | |
terraform plan | |
- run: echo ${{ steps.plan.outputs.stdout }} | |
- run: echo ${{ steps.plan.outputs.stderr }} | |
- run: echo ${{ steps.plan.outputs.exitcode }} | |
web-deploy: | |
name: 💫 Deploy | |
runs-on: ubuntu-latest | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
needs: ["TF-Apply"] | |
steps: | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
- name: Look around 👁️👁️ | |
run: | | |
echo Looking around 👁️👁️ | |
ls | |
echo Looking around 👁️👁️ | |
ls .\web | |
- name: 😪 Installing Dependencies | |
run: | | |
cd web | |
npm install | |
- name: 🔨 Build Project | |
run: | | |
cd web | |
npm run build |