Merge pull request 'develop' (#23) from develop into main
Some checks failed
Backend CI / ci (push) Has been cancelled
Frontend CI / ci (push) Has been cancelled

Reviewed-on: http://8.161.227.145:3000/XEngineers/CamTalk/pulls/23
This commit was merged in pull request #23.
This commit is contained in:
2026-06-13 11:46:56 +08:00
3 changed files with 8 additions and 25 deletions

View File

@@ -14,15 +14,16 @@ jobs:
run: run:
working-directory: backend working-directory: backend
steps: steps:
- name: Install Node.js (for checkout action) - name: Setup Node.js
run: | run: |
sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories
apk add --no-cache nodejs apk add --no-cache nodejs
working-directory: / working-directory: /
- uses: "http://8.161.227.145:3000/huanghaosheng/checkout@releases/v4" - name: Checkout
uses: "http://8.161.227.145:3000/huanghaosheng/checkout@releases/v4"
- name: Download dependencies - name: Download Dependencies
run: go mod download run: go mod download
env: env:
GOPROXY: https://goproxy.cn,direct GOPROXY: https://goproxy.cn,direct

View File

@@ -14,13 +14,14 @@ jobs:
run: run:
working-directory: frontend working-directory: frontend
steps: steps:
- uses: "http://8.161.227.145:3000/huanghaosheng/checkout@releases/v4" - name: Checkout
uses: "http://8.161.227.145:3000/huanghaosheng/checkout@releases/v4"
- name: Install dependencies - name: Install Dependencies
run: npm ci run: npm ci
- name: Lint - name: Lint
run: npm run lint run: npm run lint
- name: Type check & Build - name: Type Check & Build
run: npm run build run: npm run build

View File

@@ -1,19 +0,0 @@
name: Health Test
run-name: ${{ gitea.actor }} is testing Gitea Actions 🚀
on: [push]
jobs:
health:
runs-on: aliyun
container: node:22-alpine
steps:
- run: echo "🎉 Triggered by ${{ gitea.event_name }} event"
- run: echo "🌿 Branch: ${{ gitea.ref }}, Repo: ${{ gitea.repository }}"
- run: echo "🐧 Running on ${{ runner.os }}, workspace: ${{ gitea.workspace }}"
- name: Check out repository code
uses: "http://8.161.227.145:3000/huanghaosheng/checkout@releases/v4"
- run: echo "💡 ${{ gitea.repository }} has been cloned to the runner"
- name: List files in the repository
run: ls ${{ gitea.workspace }}
- run: echo "🍏 Job status: ${{ job.status }}"