新增直播间开窗增加cookie输入框,方便粘贴cookie,避免手动修改配置文件产生错误. #328
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.19 | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
- name: Build | |
run: make build-web bililive | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.19 | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
- name: Test | |
run: make build-web test | |
- name: Codecov | |
uses: codecov/codecov-action@v2 |