* build(deps): Adds husky for Git hooks - Integrates the husky package as a development dependency. - Enables the configuration and enforcement of pre-commit and pre-push Git hooks. - Improves code quality and consistency by automating checks before commits. Signed-off-by: Dragon1573 <49941141+Dragon1573@users.noreply.github.com> * feat: Add Husky prepare hook - Automatically installs Git hooks for developers - Ensures consistent code quality checks before commits or pushes - Streamlines the developer setup process Signed-off-by: Dragon1573 <49941141+Dragon1573@users.noreply.github.com> * ci: Avoid installing Git Hooks on GitHub Workflows - Adds `HUSKY: 0` environment variable to all workflow definitions. - Prevents local development hooks from executing in CI, which can cause unnecessary failures or overhead. - See https://typicode.github.io/husky/how-to.html#ci-server-and-docker Signed-off-by: Dragon1573 <49941141+Dragon1573@users.noreply.github.com> --------- Signed-off-by: Dragon1573 <49941141+Dragon1573@users.noreply.github.com>
56 lines
1.1 KiB
YAML
56 lines
1.1 KiB
YAML
name: Updater CI
|
|
|
|
on: workflow_dispatch
|
|
permissions: write-all
|
|
env:
|
|
HUSKY: 0
|
|
|
|
jobs:
|
|
release-update:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "22"
|
|
|
|
- uses: pnpm/action-setup@v4
|
|
name: Install pnpm
|
|
with:
|
|
run_install: false
|
|
|
|
- name: Pnpm install
|
|
run: pnpm i
|
|
|
|
- name: Release updater file
|
|
run: pnpm updater
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
release-update-for-fixed-webview2:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "22"
|
|
|
|
- uses: pnpm/action-setup@v4
|
|
name: Install pnpm
|
|
with:
|
|
run_install: false
|
|
|
|
- name: Pnpm install
|
|
run: pnpm i
|
|
|
|
- name: Release updater file
|
|
run: pnpm updater-fixed-webview2
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|