feat: 组合订阅错误信息将包含出现错误的子订阅名称; 获取流量失败时, 不影响节点订阅; 订阅上游无有效节点时将报错 #175
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'backend/package.json' | |
pull_request: | |
branches: | |
- master | |
paths: | |
- 'backend/package.json' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: 'master' | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "16" | |
- name: Install dependencies | |
run: | | |
npm install -g pnpm | |
cd backend && pnpm i | |
- name: Test | |
run: | | |
cd backend | |
pnpm test | |
- name: Build | |
run: | | |
cd backend | |
pnpm run build | |
- id: tag | |
name: Generate release tag | |
run: | | |
cd backend | |
SUBSTORE_RELEASE=`node --eval="process.stdout.write(require('./package.json').version)"` | |
echo "::set-output name=release_tag::$SUBSTORE_RELEASE" | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ steps.tag.outputs.release_tag }} | |
files: | | |
./backend/sub-store.min.js | |
./backend/dist/sub-store-0.min.js | |
./backend/dist/sub-store-1.min.js | |
./backend/dist/sub-store-parser.loon.min.js | |
./backend/dist/cron-sync-artifacts.min.js |