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