fixed [MV3] 在大海报直播房间下正常运作 #43, added scrollbar and max-height for eac… #46
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: Build Extensions | |
on: | |
push: | |
branches: [develop] | |
pull_request: | |
branches: [develop] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
browser: [chrome, firefox, edge] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: yarn | |
- name: Build And Package Extensions | |
run: yarn build --zip --target=${{ matrix.browser }}-mv3 | |
# upload to github artifacts for each browser with matrix | |
- name: Upload to GitHub Artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: ${{ matrix.browser }}-mv3.zip | |
path: build/ |