From db2449f5743018d632c06057712c3a6ad1f25903 Mon Sep 17 00:00:00 2001 From: Muhammed Samal Date: Sun, 21 Jan 2024 12:24:03 +0000 Subject: [PATCH] added github actions --- .github/workflows/integration.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/integration.yml diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml new file mode 100644 index 0000000..cc9f2fe --- /dev/null +++ b/.github/workflows/integration.yml @@ -0,0 +1,13 @@ +name: Build Next.js app +on: push +jobs: + build-project: + name: Build Next.js app + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + - name: Install dependencies + run: npm install + - name: Build project + run: npm run build