apaas-oapi-client 0.1.37 → 0.1.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,36 +0,0 @@
1
- name: Node.js CI & Publish
2
-
3
- on:
4
- push:
5
- branches: [main]
6
-
7
- jobs:
8
- build-test-publish:
9
- runs-on: ubuntu-latest
10
-
11
- strategy:
12
- matrix:
13
- node-version: [22.x]
14
-
15
- steps:
16
- - uses: actions/checkout@v3
17
-
18
- - name: Use Node.js ${{ matrix.node-version }}
19
- uses: actions/setup-node@v3
20
- with:
21
- node-version: ${{ matrix.node-version }}
22
- registry-url: 'https://registry.npmjs.org/'
23
-
24
- - name: Install dependencies
25
- run: npm install
26
-
27
- - name: Build
28
- run: npm run build
29
-
30
- - name: Run Tests
31
- run: npm test
32
-
33
- - name: Publish to npm
34
- run: npm publish --access public
35
- env:
36
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -1,9 +0,0 @@
1
- {
2
- // Code Runner 配置:使用 tsx 运行 TypeScript 文件
3
- "code-runner.executorMap": {
4
- "typescript": "npx tsx"
5
- },
6
- "code-runner.runInTerminal": true,
7
- "code-runner.clearPreviousOutput": true,
8
- "code-runner.saveFileBeforeRun": true
9
- }