From 42f11a0e72cf4caf94a908e2ea6391e391ecbd87 Mon Sep 17 00:00:00 2001 From: Marc Cataford Date: Fri, 6 Mar 2020 15:51:22 -0500 Subject: [PATCH 1/5] infra: disable ci failure on codecov --- .github/workflows/nodejs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 2070106..f7c8ba0 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -33,7 +33,7 @@ jobs: uses: codecov/codecov-action@v1 with: token: ${{ secrets.CODECOV_TOKEN }} - fail_ci_if_error: true + fail_ci_if_error: false build: runs-on: ubuntu-latest From 8519c9b374edafef11b44c85d03c5afe2f5e3f06 Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Fri, 6 Mar 2020 16:08:37 -0500 Subject: [PATCH 2/5] Run build on pull requests (#9) --- .github/workflows/nodejs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index f7c8ba0..3c291f0 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -1,6 +1,6 @@ name: packwatch CI -on: [push] +on: [push, pull_request] jobs: lint: From 4fafc84e56e46ab677c4d53ce421fdaa02bb42fb Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Fri, 6 Mar 2020 16:14:07 -0500 Subject: [PATCH 3/5] docs: add mcataford as a contributor (#10) * docs: update README.md [skip ci] * docs: create .all-contributorsrc [skip ci] Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com> --- .all-contributorsrc | 28 ++++++++++++++++++++++++++++ README.md | 22 ++++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 .all-contributorsrc diff --git a/.all-contributorsrc b/.all-contributorsrc new file mode 100644 index 0000000..4529e04 --- /dev/null +++ b/.all-contributorsrc @@ -0,0 +1,28 @@ +{ + "files": [ + "README.md" + ], + "imageSize": 100, + "commit": false, + "contributors": [ + { + "login": "mcataford", + "name": "Marc Cataford", + "avatar_url": "https://avatars2.githubusercontent.com/u/6210361?v=4", + "profile": "https://mcataford.github.io", + "contributions": [ + "ideas", + "code", + "infra", + "test", + "doc" + ] + } + ], + "contributorsPerLine": 7, + "projectName": "packwatch", + "projectOwner": "mcataford", + "repoType": "github", + "repoHost": "https://github.com", + "skipCi": true +} diff --git a/README.md b/README.md index 7ec5de2..70d22c9 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ # 📦 PackWatch 👀 + +[![All Contributors](https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square)](#contributors-) + > It ain't easy being tiny. @@ -42,3 +45,22 @@ packwatch --update-manifest ``` Just commit your `.packwatch.json` manifest and you're good to go! + +## Contributors ✨ + +Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): + + + + + + + + +

Marc Cataford

🤔 💻 🚇 ⚠️ 📖
+ + + + + +This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! \ No newline at end of file From 14bef2d910622029af713d1c1363fc8e4a2f7d19 Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Fri, 6 Mar 2020 16:14:55 -0500 Subject: [PATCH 4/5] docs: add msrose as a contributor (#11) * docs: update README.md [skip ci] * docs: update .all-contributorsrc [skip ci] Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com> --- .all-contributorsrc | 9 +++++++++ README.md | 3 ++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index 4529e04..f53848c 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -17,6 +17,15 @@ "test", "doc" ] + }, + { + "login": "msrose", + "name": "Michael Rose", + "avatar_url": "https://avatars3.githubusercontent.com/u/3495264?v=4", + "profile": "http://msrose.github.io", + "contributions": [ + "infra" + ] } ], "contributorsPerLine": 7, diff --git a/README.md b/README.md index 70d22c9..e3d8eae 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # 📦 PackWatch 👀 -[![All Contributors](https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square)](#contributors-) +[![All Contributors](https://img.shields.io/badge/all_contributors-2-orange.svg?style=flat-square)](#contributors-) > It ain't easy being tiny. @@ -56,6 +56,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d +

Marc Cataford

🤔 💻 🚇 ⚠️ 📖

Michael Rose

🚇
From 432ce163b07486db50c08a570073cda2a721b8ee Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Fri, 6 Mar 2020 16:16:07 -0500 Subject: [PATCH 5/5] Add RC files (#5) --- .github/workflows/nodejs.yml | 2 +- .nvmrc | 1 + .yvmrc | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .nvmrc create mode 100644 .yvmrc diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 3c291f0..2baf048 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -48,7 +48,7 @@ jobs: uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - - run: yarn + - run: yarn --frozen-lockfile - run: yarn build release: name: Release diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..48082f7 --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +12 diff --git a/.yvmrc b/.yvmrc new file mode 100644 index 0000000..57807d6 --- /dev/null +++ b/.yvmrc @@ -0,0 +1 @@ +1.22.0