├── .github └── workflows │ ├── actionlint.yml │ └── is-dist-up-to-date.yml ├── .gitignore ├── action-release └── action-release.yml ├── esm-lint └── esm-lint.yml ├── is-dist-up-to-date └── is-dist-up-to-date.yml ├── license ├── node-multi └── ci.yml ├── node └── ci.yml ├── npm-publish └── npm-publish.yml ├── package.json ├── readme.md └── webext └── release.yml /.github/workflows/actionlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregante/ghatemplates/HEAD/.github/workflows/actionlint.yml -------------------------------------------------------------------------------- /.github/workflows/is-dist-up-to-date.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregante/ghatemplates/HEAD/.github/workflows/is-dist-up-to-date.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | package-lock.json 2 | -------------------------------------------------------------------------------- /action-release/action-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregante/ghatemplates/HEAD/action-release/action-release.yml -------------------------------------------------------------------------------- /esm-lint/esm-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregante/ghatemplates/HEAD/esm-lint/esm-lint.yml -------------------------------------------------------------------------------- /is-dist-up-to-date/is-dist-up-to-date.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregante/ghatemplates/HEAD/is-dist-up-to-date/is-dist-up-to-date.yml -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregante/ghatemplates/HEAD/license -------------------------------------------------------------------------------- /node-multi/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregante/ghatemplates/HEAD/node-multi/ci.yml -------------------------------------------------------------------------------- /node/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregante/ghatemplates/HEAD/node/ci.yml -------------------------------------------------------------------------------- /npm-publish/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregante/ghatemplates/HEAD/npm-publish/npm-publish.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregante/ghatemplates/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregante/ghatemplates/HEAD/readme.md -------------------------------------------------------------------------------- /webext/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregante/ghatemplates/HEAD/webext/release.yml --------------------------------------------------------------------------------