57 lines
1.3 KiB
YAML
57 lines
1.3 KiB
YAML
name: Memind CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: memind-ci-${{ gitea.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
verify:
|
|
name: Test, build, and release guards
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 30
|
|
|
|
steps:
|
|
- name: Check out exact commit
|
|
run: |
|
|
git init .
|
|
git remote add origin https://git.tkmind.cn/tkmind/memind.git
|
|
git fetch --depth=2 origin "${{ gitea.sha }}"
|
|
git checkout --detach FETCH_HEAD
|
|
test "$(git rev-parse HEAD)" = "${{ gitea.sha }}"
|
|
|
|
- name: Install locked dependencies
|
|
run: npm ci
|
|
|
|
- name: Check patch formatting
|
|
run: git diff --check HEAD^
|
|
|
|
- name: Run full test suite
|
|
run: npm test
|
|
|
|
- name: Build production frontend
|
|
run: npm run build
|
|
|
|
- name: Verify MindSpace publish guards
|
|
run: npm run verify:mindspace-publish-guards
|
|
|
|
- name: Verify MindSpace page sync guards
|
|
run: npm run verify:mindspace-page-sync-guards
|
|
|
|
- name: Verify Page Data delivery
|
|
run: npm run verify:page-data
|
|
|
|
- name: Check published download links
|
|
run: npm run check:mindspace-public-links
|