Skip to content

Commit da30f5b

Browse files
squash!
2 parents 50e7d5a + 41cd3d2 commit da30f5b

263 files changed

Lines changed: 45867 additions & 80018 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/dependabot.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,3 @@ updates:
1818
schedule:
1919
interval: "daily"
2020
versioning-strategy: increase
21-
22-
- package-ecosystem: "pip"
23-
directory: "/src"
24-
schedule:
25-
interval: "daily"
26-
versioning-strategy: increase

.github/workflows/NPM.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: NPM
2+
3+
concurrency:
4+
group: NPM-${{ github.workflow }}-${{ github.ref }}
5+
cancel-in-progress: true
6+
7+
permissions:
8+
security-events: write
9+
contents: write
10+
pull-requests: write
11+
12+
on:
13+
workflow_dispatch:
14+
release:
15+
types: [created]
16+
workflow_call:
17+
18+
jobs:
19+
Publish:
20+
runs-on: ubuntu-latest
21+
22+
permissions:
23+
contents: read
24+
id-token: write
25+
26+
steps:
27+
- uses: actions/checkout@v4.1.1
28+
29+
- uses: actions/setup-node@v4.0.1
30+
with:
31+
node-version: "18"
32+
registry-url: "https://registry.npmjs.org"
33+
34+
- run: npm install -g npm
35+
36+
- name: Publish .
37+
continue-on-error: true
38+
working-directory: .
39+
run: |
40+
npm install --legacy-peer-deps
41+
npm publish --legacy-peer-deps --provenance
42+
env:
43+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/Node.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,5 +90,10 @@ jobs:
9090
name: .-Node-${{ matrix.node-version }}-Target
9191
path: ./Target
9292

93-
- run: pnpm run test
93+
- run: pnpm run prepublishOnly
9494
working-directory: .
95+
96+
- uses: actions/upload-artifact@v4.3.0
97+
with:
98+
name: .-Node-${{ matrix.node-version }}-Target
99+
path: ./Target

0 commit comments

Comments
 (0)