griddo-sdk 1.2.2 → 1.2.3
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.
package/package.json
CHANGED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
name: Qodana
|
|
2
|
-
on:
|
|
3
|
-
workflow_dispatch:
|
|
4
|
-
pull_request:
|
|
5
|
-
types: [opened]
|
|
6
|
-
branches:
|
|
7
|
-
- main
|
|
8
|
-
jobs:
|
|
9
|
-
qodana:
|
|
10
|
-
runs-on: ubuntu-latest
|
|
11
|
-
permissions:
|
|
12
|
-
contents: write
|
|
13
|
-
pull-requests: write
|
|
14
|
-
checks: write
|
|
15
|
-
steps:
|
|
16
|
-
- uses: actions/checkout@v4
|
|
17
|
-
with:
|
|
18
|
-
fetch-depth: 0
|
|
19
|
-
- name: Set up Node.js
|
|
20
|
-
uses: actions/setup-node@v3
|
|
21
|
-
with:
|
|
22
|
-
node-version: '18'
|
|
23
|
-
- name: Install Eslint
|
|
24
|
-
run: npm install eslint --ignore-scripts
|
|
25
|
-
- name: 'Qodana Scan'
|
|
26
|
-
uses: JetBrains/qodana-action@latest
|
|
27
|
-
env:
|
|
28
|
-
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
name: Release
|
|
2
|
-
|
|
3
|
-
permissions:
|
|
4
|
-
contents: write
|
|
5
|
-
|
|
6
|
-
on:
|
|
7
|
-
workflow_dispatch:
|
|
8
|
-
push:
|
|
9
|
-
tags:
|
|
10
|
-
- 'v*'
|
|
11
|
-
|
|
12
|
-
jobs:
|
|
13
|
-
release:
|
|
14
|
-
runs-on: ubuntu-latest
|
|
15
|
-
permissions:
|
|
16
|
-
contents: read
|
|
17
|
-
id-token: write
|
|
18
|
-
steps:
|
|
19
|
-
- uses: actions/checkout@v4
|
|
20
|
-
with:
|
|
21
|
-
fetch-depth: 0
|
|
22
|
-
|
|
23
|
-
- name: Fetch branches
|
|
24
|
-
run: git fetch --all
|
|
25
|
-
|
|
26
|
-
- name: Configure Git
|
|
27
|
-
run: |
|
|
28
|
-
git config user.email "actions@github.com"
|
|
29
|
-
git config user.name "GitHub Actions"
|
|
30
|
-
|
|
31
|
-
- name: Create Change Log
|
|
32
|
-
run: npx changelogithub
|
|
33
|
-
env:
|
|
34
|
-
GITHUB_TOKEN: ${{secrets.GRIDDO_RELEASE_ACCESS_TOKEN}}
|
|
35
|
-
|
|
36
|
-
- name: Install dependencies
|
|
37
|
-
run: npm install
|
|
38
|
-
|
|
39
|
-
- name: Publish package
|
|
40
|
-
uses: actions/setup-node@v4
|
|
41
|
-
with:
|
|
42
|
-
node-version: '20.x'
|
|
43
|
-
registry-url: 'https://registry.npmjs.org'
|
|
44
|
-
- run: npm ci
|
|
45
|
-
- run: npm publish --access public
|
|
46
|
-
env:
|
|
47
|
-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
package/qodana.yaml
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
#-------------------------------------------------------------------------------#
|
|
2
|
-
# Qodana analysis is configured by qodana.yaml file #
|
|
3
|
-
# https://www.jetbrains.com/help/qodana/qodana-yaml.html #
|
|
4
|
-
#-------------------------------------------------------------------------------#
|
|
5
|
-
version: "1.0"
|
|
6
|
-
#Specify inspection profile for code analysis
|
|
7
|
-
profile:
|
|
8
|
-
name: qodana.starter
|
|
9
|
-
include:
|
|
10
|
-
- name: CheckDependencyLicenses
|
|
11
|
-
- name: Eslint
|
|
12
|
-
linter: jetbrains/qodana-js:latest
|
|
13
|
-
exclude:
|
|
14
|
-
- name: JSXDomNesting
|
|
15
|
-
- name: VueDataFunction
|
|
16
|
-
- name: VueDeprecatedSymbol
|
|
17
|
-
- name: VueDuplicateTag
|
|
18
|
-
- name: VueMissingComponentImportInspection
|
|
19
|
-
- name: VueUnrecognizedDirective
|
|
20
|
-
- name: VueUnrecognizedSlot
|