mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-11-10 11:18:25 +08:00
86f73de893
* fix: githubactions config * fix: update build env * fix: remove cache Co-authored-by: ivringpeng <pengyue970725@gmail.com>
17 lines
324 B
YAML
17 lines
324 B
YAML
name: MAIN_PULL_REQUEST
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [develop, main]
|
|
|
|
jobs:
|
|
MAIN_PULL_REQUEST:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '14'
|
|
- run: npm install
|
|
shell: bash
|
|
- run: npm run lint |