From 8229500967ef274dd84026665ec37c2c47737182 Mon Sep 17 00:00:00 2001 From: Bryan MacFarlane Date: Fri, 20 Sep 2019 07:47:55 -0400 Subject: [PATCH 1/3] update gitignore --- .gitignore | 6 ++++-- README.md | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index ad46b30..f2cf6b2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ +# comment this out distribution branches +node_modules/ + # Logs logs *.log @@ -32,8 +35,7 @@ bower_components # Compiled binary addons (https://nodejs.org/api/addons.html) build/Release -# Dependency directories -node_modules/ +# Other Dependency directories jspm_packages/ # TypeScript v1 declaration files diff --git a/README.md b/README.md index b3538dc..cb00001 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ Actions are run from GitHub repos. We will create a releases branch and only ch Comment out node_modules in .gitignore and create a releases/v1 branch ```bash -# Dependency directories +# comment this out distribution branches # node_modules/ ``` From 0253e536371205a20c868e454fa2b2219d2f8f91 Mon Sep 17 00:00:00 2001 From: Bryan MacFarlane Date: Fri, 20 Sep 2019 07:52:17 -0400 Subject: [PATCH 2/3] update deps --- package-lock.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index cc6729c..96d151b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5,9 +5,9 @@ "requires": true, "dependencies": { "@actions/core": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.1.0.tgz", - "integrity": "sha512-KKpo3xzo0Zsikni9tbOsEQkxZBGDsYSJZNkTvmo0gPSXrc98TBOcdTvKwwjitjkjHkreTggWdB1ACiAFVgsuzA==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.1.1.tgz", + "integrity": "sha512-O5G6EmlzTVsng7VSpNtszIoQq6kOgMGNTFB/hmwKNNA4V71JyxImCIrL27vVHCt2Cb3ImkaCr6o27C2MV9Ylwg==" }, "@babel/code-frame": { "version": "7.5.5", diff --git a/package.json b/package.json index 634ff51..32c5083 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ }, "homepage": "https://github.com/actions/javascript-action#readme", "dependencies": { - "@actions/core": "^1.1.0" + "@actions/core": "^1.1.1" }, "devDependencies": { "eslint": "^6.3.0", From 54d1b4fa354e85c8cda495b8a56d9d0a22c8f99f Mon Sep 17 00:00:00 2001 From: Bryan MacFarlane Date: Sun, 22 Sep 2019 06:40:03 -0400 Subject: [PATCH 3/3] test.yml runs local action --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 36bbdc0..aa1c635 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,6 +12,6 @@ jobs: - run: npm ci - run: npm test - - uses: actions/javascript-action@releases/v1 + - uses: ./ with: milliseconds: 1000