fix: video page section height css typo #38
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: dev-ci | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
dev-build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: install | |
run: pnpm install | |
- name: lint | |
run: pnpm run lint | |
- name: format | |
run: pnpm run format | |
# build两个版本 | |
- name: build minify | |
run: pnpm run build:minify | |
- name: mkdir | |
run: mkdir output | |
- name: move and rename file | |
run: mv dist/bilibili-cleaner.user.js output/bilibili-cleaner.user.min.js | |
- name: build default | |
run: pnpm run build | |
- name: copy file | |
run: cp dist/bilibili-cleaner.user.js output/ | |
- name: add doc | |
run: cp LICENSE README.md CHANGELOG.md output/ | |
- name: list files | |
run: ls -lah output/ | |
# 上传产物 | |
- name: upload-artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: bilibili-cleaner | |
path: output/* |