From a18edff23cac2a69393a77558536c20171519157 Mon Sep 17 00:00:00 2001 From: Anish Araz Date: Sun, 13 Oct 2024 16:14:00 +0530 Subject: [PATCH] Disabled Dockerfile & cicd --- .github/workflows/CI.yml | 36 +++++++++++++++++++----------------- Dockerfile | 3 ++- 2 files changed, 21 insertions(+), 18 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index fca810a..e58067d 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -1,23 +1,25 @@ -name: CI +###### NEED TO BE RE-WRITTEN FOR TURBO REPO ###### -on: - pull_request: - branches: [main] +# name: CI -jobs: - build: - runs-on: ubuntu-latest +# on: +# pull_request: +# branches: [main] - steps: - - uses: actions/checkout@main +# jobs: +# build: +# runs-on: ubuntu-latest - - name: Use Node.js - uses: actions/setup-node@main - with: - node-version: "18" +# steps: +# - uses: actions/checkout@main - - name: Install dependencies - run: npm ci +# - name: Use Node.js +# uses: actions/setup-node@main +# with: +# node-version: "18" - - name: Build Next.js app - run: npm run build +# - name: Install dependencies +# run: npm ci + +# - name: Build Next.js app +# run: npm run build diff --git a/Dockerfile b/Dockerfile index 60b6195..da054d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,5 @@ -# THIS FILE NEEDS TO BE UPDATED TO USE WITH TURBO REPO +###### NEED TO BE RE-WRITTEN FOR TURBO REPO ###### + # FROM node:20-alpine AS base