-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
184 changed files
with
1,394 additions
and
19,345 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,40 @@ | ||
name: Build | ||
|
||
on: | ||
push: | ||
branches: | ||
- "**" | ||
- "!main" | ||
pull_request: | ||
branches: | ||
- "**" | ||
- "!main" | ||
|
||
jobs: | ||
CI: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- name: Set git to use LF | ||
run: | | ||
git config --global core.autocrlf false | ||
git config --global core.eol lf | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: pnpm/action-setup@v2 | ||
with: | ||
version: latest | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
|
||
- name: install dependencies | ||
run: pnpm install --frozen-lockfile | ||
|
||
- name: lint | ||
run: pnpm lint | ||
# name: Build | ||
|
||
# on: | ||
# push: | ||
# branches: | ||
# - "**" | ||
# - "!main" | ||
# pull_request: | ||
# branches: | ||
# - "**" | ||
# - "!main" | ||
|
||
# jobs: | ||
# CI: | ||
# runs-on: windows-latest | ||
|
||
# steps: | ||
# - name: Set git to use LF | ||
# run: | | ||
# git config --global core.autocrlf false | ||
# git config --global core.eol lf | ||
|
||
# - uses: actions/checkout@v4 | ||
|
||
# - uses: pnpm/action-setup@v2 | ||
# with: | ||
# version: latest | ||
|
||
# - uses: actions/setup-node@v4 | ||
# with: | ||
# node-version: 20 | ||
|
||
# - name: install dependencies | ||
# run: pnpm install --frozen-lockfile | ||
|
||
# - name: lint | ||
# run: pnpm lint | ||
|
||
- name: build | ||
run: pnpm build | ||
# - name: build | ||
# run: pnpm build |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,54 @@ | ||
name: Release | ||
# name: Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v*" | ||
workflow_dispatch: | ||
# on: | ||
# push: | ||
# tags: | ||
# - "v*" | ||
# workflow_dispatch: | ||
|
||
jobs: | ||
release-windows: | ||
runs-on: windows-latest | ||
# jobs: | ||
# release-windows: | ||
# runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
|
||
- uses: pnpm/action-setup@v2 | ||
with: | ||
version: latest | ||
# - uses: pnpm/action-setup@v2 | ||
# with: | ||
# version: latest | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
# - uses: actions/setup-node@v4 | ||
# with: | ||
# node-version: 20 | ||
|
||
- name: install dependencies | ||
run: pnpm install --frozen-lockfile | ||
# - name: install dependencies | ||
# run: pnpm install --frozen-lockfile | ||
|
||
- name: release artifacts | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: pnpm release | ||
# - name: release artifacts | ||
# env: | ||
# GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# run: pnpm release | ||
|
||
release-mac: | ||
needs: release-windows | ||
# release-mac: | ||
# needs: release-windows | ||
|
||
runs-on: macos-latest | ||
# runs-on: macos-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
|
||
- uses: pnpm/action-setup@v2 | ||
with: | ||
version: latest | ||
# - uses: pnpm/action-setup@v2 | ||
# with: | ||
# version: latest | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
# - uses: actions/setup-node@v4 | ||
# with: | ||
# node-version: 20 | ||
|
||
- name: install dependencies | ||
run: pnpm install --frozen-lockfile | ||
# - name: install dependencies | ||
# run: pnpm install --frozen-lockfile | ||
|
||
- name: release artifacts | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: pnpm release | ||
# - name: release artifacts | ||
# env: | ||
# GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# run: pnpm release |
Oops, something went wrong.