feat: init customer authentication #2

Merged
TakahashiNguyen merged 66 commits from dev-order-service into main 2026-03-23 13:21:01 +00:00
2 changed files with 23 additions and 3 deletions
Showing only changes of commit 6a88d5a0bf - Show all commits
+22 -2
View File
@@ -29,9 +29,29 @@ jobs:
- uses: actions/setup-node@v6 - uses: actions/setup-node@v6
with: with:
node-version: 24 node-version: latest
- uses: pnpm/action-setup@v3
with:
version: latest
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/package.json') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Run Semantic Release - name: Run Semantic Release
env: env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
run: npx semantic-release run: |
pnpm i
pnpm release
+1 -1
View File
@@ -2,7 +2,7 @@
"version": "1.0.0", "version": "1.0.0",
"description": "", "description": "",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "release": "semantic-release"
}, },
"keywords": [], "keywords": [],
"author": "DemonKernel", "author": "DemonKernel",