From 2a06e9e42092c670db8ea5174c80178bbe111e1a Mon Sep 17 00:00:00 2001 From: Abubaker <80399346+abubaker-31@users.noreply.github.com> Date: Thu, 11 Jul 2024 17:37:11 +0500 Subject: [PATCH] Create buildspec.yml --- CI-CD/buildspec.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 CI-CD/buildspec.yml diff --git a/CI-CD/buildspec.yml b/CI-CD/buildspec.yml new file mode 100644 index 0000000..bdd4b84 --- /dev/null +++ b/CI-CD/buildspec.yml @@ -0,0 +1,12 @@ +version: 0.2 +env: + variables: + BUCKET_NAME: "test-frontend" + DISTRIBUTION_ID: "" +phases: + build: + commands: + - echo Build started on `date` + - echo Installing and Running npm... + - npm i + - npm run dev