Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: tdesign-icons #3

Merged
merged 24 commits into from
Jan 10, 2025
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
Loading