mirror of
https://github.com/BewlyBewly/BewlyBewly.git
synced 2025-04-14 13:15:29 +00:00
58 lines
1.1 KiB
YAML
58 lines
1.1 KiB
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
# The branch where the project source code resides
|
|
# 项目源代码所在的分支
|
|
- main
|
|
- dev
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: pnpm/action-setup@v2
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16.x
|
|
cache: pnpm
|
|
|
|
- name: Install
|
|
run: pnpm install
|
|
|
|
- name: Lint
|
|
run: pnpm run lint
|
|
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: pnpm/action-setup@v2
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18.17.0
|
|
cache: pnpm
|
|
|
|
- name: Install
|
|
run: pnpm install
|
|
|
|
- name: Build
|
|
run: pnpm build
|
|
|
|
- name: Build Extension
|
|
run: pnpm pack:crx && pnpm pack:zip
|
|
|
|
- name: Upload Zip
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: BewlyBewly Zip
|
|
path: extension.zip
|
|
|
|
- name: Upload Crx
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: BewlyBewly Crx
|
|
path: extension.crx
|