├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── anything-else-.md │ ├── bug_report.md │ ├── chore_tasks.yaml │ ├── ci.md │ ├── docs.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── config.yml ├── dependabot.yml ├── label-commenter-config.yml ├── labeler.yml ├── readme │ └── images │ │ ├── Layer5-MeshMentors.png │ │ ├── community.svg │ │ ├── meshmap-snapshot.png │ │ ├── slack-128.png │ │ └── slack-dark-128.png ├── release-drafter.yml └── workflows │ ├── check-dist.yml │ ├── codeql-analysis.yml │ ├── file-path-build-test.yml │ ├── label-commenter.yml │ ├── labeler.yaml │ ├── labeler.yml │ ├── playwright.yml │ ├── release-drafter.yml │ ├── test-json-data-extraction.yml │ ├── update-action-template.yml │ └── url-upload-test.yml ├── .gitignore ├── CODEOWNERS ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── SECURITY.md ├── __tests__ ├── main.test.ts ├── manifest-test │ ├── meshery-app-mesh-deployment.yaml │ ├── meshery-app-mesh-service.yaml │ ├── meshery-cilium-deployment.yaml │ ├── meshery-cilium-service.yaml │ ├── meshery-consul-deployment.yaml │ ├── meshery-consul-service.yaml │ ├── meshery-cpx-deployment.yaml │ ├── meshery-cpx-service.yaml │ ├── meshery-deployment.yaml │ ├── meshery-istio-deployment.yaml │ ├── meshery-istio-service.yaml │ ├── meshery-kuma-deployment.yaml │ ├── meshery-kuma-service.yaml │ ├── meshery-linkerd-deployment.yaml │ ├── meshery-linkerd-service.yaml │ ├── meshery-nginx-sm-deployment.yaml │ ├── meshery-nginx-sm-service.yaml │ ├── meshery-nsm-deployment.yaml │ ├── meshery-nsm-service.yaml │ ├── meshery-octarine-deployment.yaml │ ├── meshery-octarine-service.yaml │ ├── meshery-osm-deployment.yaml │ ├── meshery-osm-service.yaml │ ├── meshery-service.yaml │ ├── meshery-traefik-mesh-deployment.yaml │ ├── meshery-traefik-mesh-service.yaml │ └── service-account.yaml └── output.json ├── action.yml ├── cypress-action ├── cypress-configs │ ├── cypress.localhost.config.js │ └── cypress.playground.config.js ├── cypress.config.js ├── cypress │ ├── e2e │ │ └── e2e │ │ │ └── loadDesign.js │ ├── fixtures │ │ ├── capabilities.json │ │ └── example.json │ ├── plugins │ │ └── index.js │ └── support │ │ ├── commands.js │ │ ├── constants.js │ │ ├── e2e.js │ │ ├── events.js │ │ ├── helpers.js │ │ └── index.d.ts ├── package-lock.json └── package.json ├── manifest-merger.sh ├── node-action ├── .eslintignore ├── .eslintrc.json ├── .prettierignore ├── .prettierrc.json ├── action.yml ├── dist │ ├── index.js │ ├── index.js.map │ ├── licenses.txt │ └── sourcemap-register.js ├── jest.config.js ├── lib │ ├── cypress-test-definition.js │ ├── main.js │ ├── table-summary-definition.js │ └── wait.js ├── package-lock.json ├── package.json ├── src │ └── main.ts └── tsconfig.json ├── node-file-upload ├── index.js ├── package-lock.json └── package.json ├── normalize-configuration-file ├── index.js ├── package-lock.json └── package.json ├── playground-ping.sh ├── playwright-action ├── package-lock.json ├── package.json ├── playwright.config.js ├── tests-examples │ └── demo-todo-app.spec.js └── tests │ ├── example.spec.js │ └── playground.spec.js ├── screenshot.png ├── sendSnapshotEmail.sh ├── test.md ├── upload-artifacts ├── action.yml ├── img.png ├── index.js ├── package-lock.json └── package.json ├── uploadApplicationFile.sh ├── uploadApplicationUrl.sh └── workflow-templates ├── file-uploadTemplate.yaml └── url-uploadTemplate.yaml /.gitattributes: -------------------------------------------------------------------------------- 1 | dist/** -diff linguist-generated=true -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/anything-else-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/ISSUE_TEMPLATE/anything-else-.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/chore_tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/ISSUE_TEMPLATE/chore_tasks.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/ISSUE_TEMPLATE/ci.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/ISSUE_TEMPLATE/docs.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/label-commenter-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/label-commenter-config.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/readme/images/Layer5-MeshMentors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/readme/images/Layer5-MeshMentors.png -------------------------------------------------------------------------------- /.github/readme/images/community.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/readme/images/community.svg -------------------------------------------------------------------------------- /.github/readme/images/meshmap-snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/readme/images/meshmap-snapshot.png -------------------------------------------------------------------------------- /.github/readme/images/slack-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/readme/images/slack-128.png -------------------------------------------------------------------------------- /.github/readme/images/slack-dark-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/readme/images/slack-dark-128.png -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/check-dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/workflows/check-dist.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/file-path-build-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/workflows/file-path-build-test.yml -------------------------------------------------------------------------------- /.github/workflows/label-commenter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/workflows/label-commenter.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/workflows/labeler.yaml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/playwright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/workflows/playwright.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/test-json-data-extraction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/workflows/test-json-data-extraction.yml -------------------------------------------------------------------------------- /.github/workflows/update-action-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/workflows/update-action-template.yml -------------------------------------------------------------------------------- /.github/workflows/url-upload-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.github/workflows/url-upload-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/SECURITY.md -------------------------------------------------------------------------------- /__tests__/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/main.test.ts -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-app-mesh-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-app-mesh-deployment.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-app-mesh-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-app-mesh-service.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-cilium-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-cilium-deployment.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-cilium-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-cilium-service.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-consul-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-consul-deployment.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-consul-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-consul-service.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-cpx-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-cpx-deployment.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-cpx-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-cpx-service.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-deployment.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-istio-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-istio-deployment.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-istio-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-istio-service.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-kuma-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-kuma-deployment.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-kuma-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-kuma-service.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-linkerd-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-linkerd-deployment.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-linkerd-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-linkerd-service.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-nginx-sm-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-nginx-sm-deployment.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-nginx-sm-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-nginx-sm-service.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-nsm-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-nsm-deployment.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-nsm-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-nsm-service.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-octarine-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-octarine-deployment.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-octarine-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-octarine-service.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-osm-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-osm-deployment.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-osm-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-osm-service.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-service.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-traefik-mesh-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-traefik-mesh-deployment.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/meshery-traefik-mesh-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/meshery-traefik-mesh-service.yaml -------------------------------------------------------------------------------- /__tests__/manifest-test/service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/manifest-test/service-account.yaml -------------------------------------------------------------------------------- /__tests__/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/__tests__/output.json -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/action.yml -------------------------------------------------------------------------------- /cypress-action/cypress-configs/cypress.localhost.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/cypress-action/cypress-configs/cypress.localhost.config.js -------------------------------------------------------------------------------- /cypress-action/cypress-configs/cypress.playground.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/cypress-action/cypress-configs/cypress.playground.config.js -------------------------------------------------------------------------------- /cypress-action/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/cypress-action/cypress.config.js -------------------------------------------------------------------------------- /cypress-action/cypress/e2e/e2e/loadDesign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/cypress-action/cypress/e2e/e2e/loadDesign.js -------------------------------------------------------------------------------- /cypress-action/cypress/fixtures/capabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/cypress-action/cypress/fixtures/capabilities.json -------------------------------------------------------------------------------- /cypress-action/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/cypress-action/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress-action/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/cypress-action/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress-action/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/cypress-action/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress-action/cypress/support/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/cypress-action/cypress/support/constants.js -------------------------------------------------------------------------------- /cypress-action/cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/cypress-action/cypress/support/e2e.js -------------------------------------------------------------------------------- /cypress-action/cypress/support/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/cypress-action/cypress/support/events.js -------------------------------------------------------------------------------- /cypress-action/cypress/support/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/cypress-action/cypress/support/helpers.js -------------------------------------------------------------------------------- /cypress-action/cypress/support/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/cypress-action/cypress/support/index.d.ts -------------------------------------------------------------------------------- /cypress-action/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/cypress-action/package-lock.json -------------------------------------------------------------------------------- /cypress-action/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/cypress-action/package.json -------------------------------------------------------------------------------- /manifest-merger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/manifest-merger.sh -------------------------------------------------------------------------------- /node-action/.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ 4 | jest.config.js 5 | -------------------------------------------------------------------------------- /node-action/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/node-action/.eslintrc.json -------------------------------------------------------------------------------- /node-action/.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ -------------------------------------------------------------------------------- /node-action/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/node-action/.prettierrc.json -------------------------------------------------------------------------------- /node-action/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/node-action/action.yml -------------------------------------------------------------------------------- /node-action/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/node-action/dist/index.js -------------------------------------------------------------------------------- /node-action/dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/node-action/dist/index.js.map -------------------------------------------------------------------------------- /node-action/dist/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/node-action/dist/licenses.txt -------------------------------------------------------------------------------- /node-action/dist/sourcemap-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/node-action/dist/sourcemap-register.js -------------------------------------------------------------------------------- /node-action/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/node-action/jest.config.js -------------------------------------------------------------------------------- /node-action/lib/cypress-test-definition.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /node-action/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/node-action/lib/main.js -------------------------------------------------------------------------------- /node-action/lib/table-summary-definition.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /node-action/lib/wait.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/node-action/lib/wait.js -------------------------------------------------------------------------------- /node-action/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/node-action/package-lock.json -------------------------------------------------------------------------------- /node-action/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/node-action/package.json -------------------------------------------------------------------------------- /node-action/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/node-action/src/main.ts -------------------------------------------------------------------------------- /node-action/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/node-action/tsconfig.json -------------------------------------------------------------------------------- /node-file-upload/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/node-file-upload/index.js -------------------------------------------------------------------------------- /node-file-upload/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/node-file-upload/package-lock.json -------------------------------------------------------------------------------- /node-file-upload/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/node-file-upload/package.json -------------------------------------------------------------------------------- /normalize-configuration-file/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/normalize-configuration-file/index.js -------------------------------------------------------------------------------- /normalize-configuration-file/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/normalize-configuration-file/package-lock.json -------------------------------------------------------------------------------- /normalize-configuration-file/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/normalize-configuration-file/package.json -------------------------------------------------------------------------------- /playground-ping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/playground-ping.sh -------------------------------------------------------------------------------- /playwright-action/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/playwright-action/package-lock.json -------------------------------------------------------------------------------- /playwright-action/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/playwright-action/package.json -------------------------------------------------------------------------------- /playwright-action/playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/playwright-action/playwright.config.js -------------------------------------------------------------------------------- /playwright-action/tests-examples/demo-todo-app.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/playwright-action/tests-examples/demo-todo-app.spec.js -------------------------------------------------------------------------------- /playwright-action/tests/example.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/playwright-action/tests/example.spec.js -------------------------------------------------------------------------------- /playwright-action/tests/playground.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/playwright-action/tests/playground.spec.js -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/screenshot.png -------------------------------------------------------------------------------- /sendSnapshotEmail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/sendSnapshotEmail.sh -------------------------------------------------------------------------------- /test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/test.md -------------------------------------------------------------------------------- /upload-artifacts/action.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /upload-artifacts/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/upload-artifacts/img.png -------------------------------------------------------------------------------- /upload-artifacts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/upload-artifacts/index.js -------------------------------------------------------------------------------- /upload-artifacts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/upload-artifacts/package-lock.json -------------------------------------------------------------------------------- /upload-artifacts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/upload-artifacts/package.json -------------------------------------------------------------------------------- /uploadApplicationFile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/uploadApplicationFile.sh -------------------------------------------------------------------------------- /uploadApplicationUrl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/uploadApplicationUrl.sh -------------------------------------------------------------------------------- /workflow-templates/file-uploadTemplate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/workflow-templates/file-uploadTemplate.yaml -------------------------------------------------------------------------------- /workflow-templates/url-uploadTemplate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5labs/kanvas-snapshot/HEAD/workflow-templates/url-uploadTemplate.yaml --------------------------------------------------------------------------------