Skip to content

Commit

Permalink
feat: tdesign-icons (#3)
Browse files Browse the repository at this point in the history
* feat: tdesign-icons
  • Loading branch information
liweijie0812 authored Jan 10, 2025
1 parent 2622e67 commit c1b2980
Show file tree
Hide file tree
Showing 15 changed files with 1,165 additions and 230 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: TEST_ACTION
name: test-tdesign-common
on:
pull_request:
branches: [develop]
Expand Down
69 changes: 69 additions & 0 deletions .github/workflows/test-tdesign-icons.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: test-tdesign-icons
on:
pull_request:
branches: [develop]

jobs:
pr-vue-next:
if: contains(github.event.pull_request.labels.*.name, 'icons:/pr-vue-next') || contains(github.event.pull_request.labels.*.name, 'test-action')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: test
uses: ./
id: test
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_TOKEN }}
with:
owner: Tencent
repo: tdesign-icons
pr_number: 130
comment: /pr-vue-next
pr-vue:
if: contains(github.event.pull_request.labels.*.name, 'icons:/pr-vue') || contains(github.event.pull_request.labels.*.name, 'test-action')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: test
uses: ./
id: test
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_TOKEN }}
with:
owner: Tencent
repo: tdesign-icons
pr_number: 130
comment: /pr-vue
pr-react:
if: contains(github.event.pull_request.labels.*.name, 'icons:/pr-react') || contains(github.event.pull_request.labels.*.name, 'test-action')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: test
uses: ./
id: test
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_TOKEN }}
with:
owner: Tencent
repo: tdesign-icons
pr_number: 130
comment: /pr-react
pr-miniprogram:
if: contains(github.event.pull_request.labels.*.name, 'icons:/pr-miniprogram') || contains(github.event.pull_request.labels.*.name, 'test-action')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- name: test
uses: ./
id: test
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_TOKEN }}
with:
owner: Tencent
repo: tdesign-icons
pr_number: 130
comment: /pr-miniprogram
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,9 @@
"scss",
"pcss",
"postcss"
],
"cSpell.words": [
"miniprogram",
"tdesign"
]
}
Loading

0 comments on commit c1b2980

Please sign in to comment.