├── .dockerignore ├── .eslintrc ├── .github ├── codecov.yaml ├── issue_template.md ├── pull_request_template.md ├── stale.yaml └── workflows │ └── general.yaml ├── .gitignore ├── .prettierrc ├── 404.md ├── CHANGELOG.md ├── CNAME ├── CONTRIBUTING.md ├── Dockerfile ├── LEAD.md ├── LICENSE.md ├── MIGRATION.md ├── Makefile ├── README.md ├── action.yml ├── assets ├── VisualReports.png ├── badge.png ├── badges-home.png ├── badges.png ├── dataportals-status-badge.png ├── describe.png ├── diagram.png ├── example.png ├── extract.png ├── github-actions-workflow-run-badge-code.png ├── github-actions-workflow-run-menu.png ├── github-actions-workflow-run.png ├── github-actions.png ├── github-webhooks.png ├── logo.png ├── logs.png ├── medal-old.png ├── medal.png ├── promo.png ├── reports-old.png ├── reports.png ├── statuses.png ├── transform.png ├── validate.png ├── validation-old.png ├── validation.png └── validation.svg ├── data ├── datapackage.yaml ├── inquiry.extra.yaml ├── inquiry.yaml ├── invalid.csv ├── invalid.resource.json ├── valid.csv └── valid.resource.json ├── docs ├── badges.md ├── configuration.md ├── functionality.md ├── getting-started.md ├── inquiries.md └── reports.md ├── jest.config.js ├── lib ├── action.js ├── config.js ├── index.js └── main.js ├── livemark.yaml ├── package.json ├── pages └── dashboard.md ├── requirements.txt ├── style.css └── test └── action.js /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/codecov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/.github/codecov.yaml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/.github/stale.yaml -------------------------------------------------------------------------------- /.github/workflows/general.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/.github/workflows/general.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/.prettierrc -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/404.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | repository.frictionlessdata.io 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/Dockerfile -------------------------------------------------------------------------------- /LEAD.md: -------------------------------------------------------------------------------- 1 | roll 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/MIGRATION.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/action.yml -------------------------------------------------------------------------------- /assets/VisualReports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/VisualReports.png -------------------------------------------------------------------------------- /assets/badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/badge.png -------------------------------------------------------------------------------- /assets/badges-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/badges-home.png -------------------------------------------------------------------------------- /assets/badges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/badges.png -------------------------------------------------------------------------------- /assets/dataportals-status-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/dataportals-status-badge.png -------------------------------------------------------------------------------- /assets/describe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/describe.png -------------------------------------------------------------------------------- /assets/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/diagram.png -------------------------------------------------------------------------------- /assets/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/example.png -------------------------------------------------------------------------------- /assets/extract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/extract.png -------------------------------------------------------------------------------- /assets/github-actions-workflow-run-badge-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/github-actions-workflow-run-badge-code.png -------------------------------------------------------------------------------- /assets/github-actions-workflow-run-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/github-actions-workflow-run-menu.png -------------------------------------------------------------------------------- /assets/github-actions-workflow-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/github-actions-workflow-run.png -------------------------------------------------------------------------------- /assets/github-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/github-actions.png -------------------------------------------------------------------------------- /assets/github-webhooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/github-webhooks.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/logs.png -------------------------------------------------------------------------------- /assets/medal-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/medal-old.png -------------------------------------------------------------------------------- /assets/medal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/medal.png -------------------------------------------------------------------------------- /assets/promo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/promo.png -------------------------------------------------------------------------------- /assets/reports-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/reports-old.png -------------------------------------------------------------------------------- /assets/reports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/reports.png -------------------------------------------------------------------------------- /assets/statuses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/statuses.png -------------------------------------------------------------------------------- /assets/transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/transform.png -------------------------------------------------------------------------------- /assets/validate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/validate.png -------------------------------------------------------------------------------- /assets/validation-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/validation-old.png -------------------------------------------------------------------------------- /assets/validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/validation.png -------------------------------------------------------------------------------- /assets/validation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/assets/validation.svg -------------------------------------------------------------------------------- /data/datapackage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/data/datapackage.yaml -------------------------------------------------------------------------------- /data/inquiry.extra.yaml: -------------------------------------------------------------------------------- 1 | tasks: 2 | - path: invalid.csv 3 | -------------------------------------------------------------------------------- /data/inquiry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/data/inquiry.yaml -------------------------------------------------------------------------------- /data/invalid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/data/invalid.csv -------------------------------------------------------------------------------- /data/invalid.resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/data/invalid.resource.json -------------------------------------------------------------------------------- /data/valid.csv: -------------------------------------------------------------------------------- 1 | id,name 2 | 1,english 3 | 2,中国人 4 | -------------------------------------------------------------------------------- /data/valid.resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/data/valid.resource.json -------------------------------------------------------------------------------- /docs/badges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/docs/badges.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/functionality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/docs/functionality.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/inquiries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/docs/inquiries.md -------------------------------------------------------------------------------- /docs/reports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/docs/reports.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/jest.config.js -------------------------------------------------------------------------------- /lib/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/lib/action.js -------------------------------------------------------------------------------- /lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/lib/config.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/lib/main.js -------------------------------------------------------------------------------- /livemark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/livemark.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/package.json -------------------------------------------------------------------------------- /pages/dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/pages/dashboard.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | frictionless[csv,excel,json]>=5.15.4 2 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/frictionless-ci/HEAD/test/action.js --------------------------------------------------------------------------------