Skip to content
This repository was archived by the owner on Jul 16, 2025. It is now read-only.

🧟‍♀️☹️ ↝ [#7 #9]: Can now send customer id into django #15

🧟‍♀️☹️ ↝ [#7 #9]: Can now send customer id into django

🧟‍♀️☹️ ↝ [#7 #9]: Can now send customer id into django #15

Workflow file for this run

name: Build Next.js Application
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install dependencies
run: yarn install
- name: Build the app
run: yarn build
- name: Cache node modules
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-