Update action workflows to work for this fork #32

Merged
sugar merged 2 commits from sugar/forkey:update-action-workflows into main 2025-01-16 16:43:53 +00:00
21 changed files with 8 additions and 8 deletions
Showing only changes of commit 33077ed48e - Show all commits

View file

@ -1,7 +1,7 @@
**/.git
.autogen
.github
.forgejo
.travis
.vscode
.config

View file

@ -65,7 +65,7 @@ jobs:
- name: Check pnpm-lock.yaml
run: git diff --exit-code pnpm-lock.yaml
- name: Copy Configure
run: cp .github/misskey/test.yml .config
run: cp .forgejo/misskey/test.yml .config
- name: Build
run: pnpm build
- name: Test
@ -119,7 +119,7 @@ jobs:
- name: Check pnpm-lock.yaml
run: git diff --exit-code pnpm-lock.yaml
- name: Copy Configure
run: cp .github/misskey/test.yml .config
run: cp .forgejo/misskey/test.yml .config
- name: Build
run: pnpm build
- name: Test

View file

@ -47,7 +47,7 @@ jobs:
- name: Check pnpm-lock.yaml
run: git diff --exit-code pnpm-lock.yaml
- name: Copy Configure
run: cp .github/misskey/test.yml .config
run: cp .forgejo/misskey/test.yml .config
- name: Build
run: pnpm build
- name: Test

View file

@ -35,6 +35,6 @@ jobs:
- name: Check pnpm-lock.yaml
run: git diff --exit-code pnpm-lock.yaml
- name: Copy Configure
run: cp .github/misskey/test.yml .config/default.yml
run: cp .forgejo/misskey/test.yml .config/default.yml
- name: Build
run: pnpm build

View file

@ -161,7 +161,7 @@ pnpm dev
### Run test
Create a config file.
```
cp .github/misskey/test.yml .config/
cp .forgejo/misskey/test.yml .config/
```
Prepare DB/Redis for testing.
```
@ -188,8 +188,8 @@ TODO
- `MISSKEY_WEBFINGER_USE_HTTP`: If it's set true, WebFinger requests will be http instead of https, useful for testing federation between servers in localhost. NEVER USE IN PRODUCTION.
## Continuous integration
Misskey uses GitHub Actions for executing automated tests.
Configuration files are located in [`/.github/workflows`](/.github/workflows).
Misskey uses Forgejo Actions for executing automated tests.
Configuration files are located in [`/.forgejo/workflows`](/.forgejo/workflows).
## Vue
Misskey uses Vue(v3) as its front-end framework.