@qoretechnologies/reqore 0.19.10 → 0.19.11

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.
@@ -19,6 +19,8 @@ jobs:
19
19
  steps:
20
20
  # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
21
21
  - uses: actions/checkout@v2
22
+ with:
23
+ fetch-depth: 0
22
24
  - uses: actions/setup-node@v1
23
25
  with:
24
26
  node-version: 14.16.0
@@ -35,17 +37,18 @@ jobs:
35
37
  - name: Build
36
38
  id: build
37
39
  run: ./node_modules/.bin/tsc
38
- - uses: JS-DevTools/npm-publish@v1
40
+ - name: Publish to NPM
41
+ id: npm_publish
42
+ uses: JS-DevTools/npm-publish@v1
39
43
  with:
40
44
  token: ${{ secrets.NPM_TOKEN }}
41
45
  tag: beta
42
46
  access: public
43
47
  - name: Publish to Chromatic
48
+ id: chromatic_publish
44
49
  uses: chromaui/action@v1
45
- # Chromatic GitHub Action options
46
50
  with:
47
51
  token: ${{ secrets.GITHUB_TOKEN }}
48
- # 👇 Chromatic projectToken, refer to the manage page to obtain it.
49
52
  projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
50
53
  - name: Create a release
51
54
  id: release
@@ -20,6 +20,8 @@ jobs:
20
20
  steps:
21
21
  # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
22
22
  - uses: actions/checkout@v2
23
+ with:
24
+ fetch-depth: 0
23
25
  - uses: actions/setup-node@v1
24
26
  with:
25
27
  node-version: 14.16.0
@@ -38,6 +40,13 @@ jobs:
38
40
  - name: Running tests
39
41
  id: tests
40
42
  run: yarn test:ci
43
+ - name: Publish to Chromatic
44
+ id: chromatic_publish
45
+ uses: chromaui/action@v1
46
+ with:
47
+ token: ${{ secrets.GITHUB_TOKEN }}
48
+ projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
49
+ exitZeroOnChanges: true
41
50
  - name: Slack notification
42
51
  uses: Foxhoundn/slack@v1.2.94
43
52
  with:
@@ -0,0 +1 @@
1
+ {"numFailedTestSuites":0,"numFailedTests":0,"numPassedTestSuites":2,"numPassedTests":12,"numPendingTestSuites":0,"numPendingTests":0,"numRuntimeErrorTestSuites":0,"numTodoTests":0,"numTotalTestSuites":2,"numTotalTests":12,"openHandles":[],"snapshot":{"added":0,"didUpdate":false,"failure":false,"filesAdded":0,"filesRemoved":0,"filesRemovedList":[],"filesUnmatched":0,"filesUpdated":0,"matched":0,"total":0,"unchecked":0,"uncheckedKeysByFile":[],"unmatched":0,"updated":0},"startTime":1640860411341,"success":true,"testResults":[{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> properly","location":null,"status":"passed","title":"Renders <Button /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with size properly","location":null,"status":"passed","title":"Renders <Button /> with size properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with icon properly","location":null,"status":"passed","title":"Renders <Button /> with icon properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with intent properly","location":null,"status":"passed","title":"Renders <Button /> with intent properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with right icon properly","location":null,"status":"passed","title":"Renders <Button /> with right icon properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with icon and right icon properly","location":null,"status":"passed","title":"Renders <Button /> with icon and right icon properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with onClick function","location":null,"status":"passed","title":"Renders <Button /> with onClick function"}],"endTime":1640860416953,"message":"","name":"/workspace/reqore/__tests__/button.test.tsx","startTime":1640860412163,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Does not render <Drawer /> if not open","location":null,"status":"passed","title":"Does not render <Drawer /> if not open"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders opened <Drawer /> properly","location":null,"status":"passed","title":"Renders opened <Drawer /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders hidable <Drawer /> properly","location":null,"status":"passed","title":"Renders hidable <Drawer /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders closable <Drawer /> properly","location":null,"status":"passed","title":"Renders closable <Drawer /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Drawer /> with interactive backdrop","location":null,"status":"passed","title":"Renders <Drawer /> with interactive backdrop"}],"endTime":1640860417371,"message":"","name":"/workspace/reqore/__tests__/drawer.test.tsx","startTime":1640860412108,"status":"passed","summary":""}],"wasInterrupted":false}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qoretechnologies/reqore",
3
- "version": "0.19.10",
3
+ "version": "0.19.11",
4
4
  "description": "ReQore is a UI library of components for Qorus connected apps",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -8,7 +8,6 @@
8
8
  "test": "./node_modules/.bin/jest",
9
9
  "test:watch": "./node_modules/.bin/jest --watch",
10
10
  "test:ci": "./node_modules/.bin/jest --silent --json --outputFile=tests.json",
11
- "test:generate-output": "./node_modules/.bin/jest --json --outputFile=.jest-test-results.json",
12
11
  "build": "./node_modules/typescript/bin/tsc",
13
12
  "build:test": "./node_modules/typescript/bin/tsc --noEmit",
14
13
  "storybook": "start-storybook -p 6006 --no-dll",