Merge branch 'master' of github.com:yutent/wb-table
commit
209a9072d4
|
@ -0,0 +1,32 @@
|
|||
|
||||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "master" ]
|
||||
pull_request:
|
||||
branches: [ "master" ]
|
||||
|
||||
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 18.10.0
|
||||
|
||||
- name: 安装依赖并编译
|
||||
run: |
|
||||
npm i
|
||||
npm run build
|
||||
|
||||
- name: 上传dist目录
|
||||
uses: actions/upload-pages-artifact@v1
|
||||
with:
|
||||
path: './dist'
|
||||
|
||||
- name: 部署github pages
|
||||
id: deployment
|
||||
uses: actions/deploy-pages@v1
|
Loading…
Reference in New Issue