diff --git a/.github/workflows/release-package.yml b/.github/workflows/release-package.yml new file mode 100644 index 0000000..f55a181 --- /dev/null +++ b/.github/workflows/release-package.yml @@ -0,0 +1,34 @@ +name: Node.js Package + +on: + release: + types: [created] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: 12 + - run: npm ci + - run: npm lint + - run: npm test + + publish-gpr: + needs: build + runs-on: ubuntu-latest + permissions: + packages: write + contents: read + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: 12 + registry-url: https://npm.pkg.github.com/ + - run: npm ci + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} \ No newline at end of file diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..f8d347e --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +@onechiporenko:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/package.json b/package.json index aacc86f..9e2bc0d 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "mocha", "cleanup" ], - "repository": "https://github.com/onechiporenko/eslint-plugin-mocha-cleanup", + "repository": "git://github.com/onechiporenko/eslint-plugin-mocha-cleanup.git", "bugs": "https://github.com/onechiporenko/eslint-plugin-mocha-cleanup/issues", "homepage": "https://github.com/onechiporenko/eslint-plugin-mocha-cleanup", "author": "onechiporenko",