node-ainzfb-new 1.6.2916-test → 1.7.1-beta
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +2 -0
- package/Extra/Database/test/test.js +23 -0
- package/Extra/PM2/ecosystem.config.js +1 -1
- package/index-backup.js +1089 -0
- package/index.js +14 -17
- package/package.json +4 -3
- package/src/getAccessToken.js +21 -21
- package/src/getThreadInfo.js +18 -3423
- package/src/getUserInfoV2.js +22 -19
- package/test/data/shareAttach.js +146 -0
- package/test/data/something.mov +0 -0
- package/test/data/test.png +0 -0
- package/test/data/test.txt +7 -0
- package/test/example-config.json +18 -0
- package/test/test-page.js +140 -0
- package/test/test.js +385 -0
- package/test/testv2.js +3 -0
- package/utils.js +38 -18
- package/.gitattributes +0 -2
- package/.github/dependabot.yml +0 -11
- package/.github/workflows/nodejs.yml +0 -26
- package/.github/workflows/npmpublish.yml +0 -30
@@ -1,30 +0,0 @@
|
|
1
|
-
name: fca-sus
|
2
|
-
|
3
|
-
on:
|
4
|
-
release:
|
5
|
-
types: [created]
|
6
|
-
|
7
|
-
jobs:
|
8
|
-
build:
|
9
|
-
runs-on: ubuntu-latest
|
10
|
-
steps:
|
11
|
-
- uses: actions/checkout@v1
|
12
|
-
- uses: actions/setup-node@v1
|
13
|
-
with:
|
14
|
-
node-version: 14
|
15
|
-
- run: npm ci
|
16
|
-
- run: npm run lint
|
17
|
-
|
18
|
-
publish-npm:
|
19
|
-
needs: build
|
20
|
-
runs-on: ubuntu-latest
|
21
|
-
steps:
|
22
|
-
- uses: actions/checkout@v1
|
23
|
-
- uses: actions/setup-node@v1
|
24
|
-
with:
|
25
|
-
node-version: 14
|
26
|
-
registry-url: https://registry.npmjs.org/
|
27
|
-
- run: npm ci
|
28
|
-
- run: npm publish
|
29
|
-
env:
|
30
|
-
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
|