diff --git a/.circleci/config.yml b/.circleci/config.yml index bfbcb02..a333639 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -94,6 +94,17 @@ jobs: paths: - css + commitlint: + <<: *defaults + + steps: + - attach_workspace: + at: . + + - run: + name: Lint commit messages + command: npx semantic-commitlint -- --ci + lint: <<: *defaults @@ -105,10 +116,6 @@ jobs: name: Lint styles command: npx stylelint -- --fix - - run: - name: Lint commit messages - command: npx semantic-commitlint -- --ci - # test: # <<: *defaults @@ -172,22 +179,21 @@ workflows: # - coverage: # requires: # - install-dependencies + - commitlint: + requires: + - install-dependencies - lint: requires: - install-dependencies - build: requires: - install-dependencies - filters: - branches: - only: - - master - - develop - release: requires: - # - test + - commitlint - build - lint + # - test filters: branches: only: master diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 564edd0..5476494 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,4 +1,18 @@ - + + + +# Description of the issue + + +# What was expected to be seen + + +# What actually was seen instead + + +# Environment +Browser: +Build environment (i.e. NodeJS): + +# Suggestion(s) for fixing this issue + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 564edd0..9404741 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,4 +1,11 @@ - + + + +# Description + + +# Compatibility + + +# Caveats + diff --git a/README-jp.md b/README-jp.md index 3556195..5e11dcc 100644 --- a/README-jp.md +++ b/README-jp.md @@ -1,5 +1,5 @@
@@ -47,7 +47,7 @@ NES.cssはコンポーネントのスタイルのみを提供しています。 html, body, pre, code, kbd, samp { font-family: "font-family you want to use"; } - + ``` diff --git a/README.md b/README.md index c968b97..80f9a73 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ @@ -46,7 +46,7 @@ The default font is [Press Start 2P](https://fonts.google.com/specimen/Press+Sta html, body, pre, code, kbd, samp { font-family: "font-family you want to use"; } - + ``` diff --git a/package.json b/package.json index 0d93950..e1c7f53 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/BcRikko/NES.css.git" + "url": "https://github.com/nostalgic-css/NES.css.git" }, "keywords": [ "css", @@ -33,9 +33,9 @@ "author": "BcRikko (https://github.com/Bcrikko)", "license": "MIT", "bugs": { - "url": "https://github.com/BcRikko/NES.css/issues" + "url": "https://github.com/nostalgic-css/NES.css/issues" }, - "homepage": "https://github.com/BcRikko/NES.css#readme", + "homepage": "https://github.com/nostalgic-css/NES.css#readme", "devDependencies": { "@commitlint/cli": "^7.2.1", "@commitlint/config-conventional": "^7.1.2",