From dc3ead67a6de6e32fe229c5780f92d47051b756e Mon Sep 17 00:00:00 2001 From: ayyanm Date: Wed, 28 Oct 2020 11:12:03 -0700 Subject: [PATCH 1/3] Remove "deno cache tests/mod.test.ts" from workflow --- .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 9cc5554c9..1c1a717b5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,6 +10,6 @@ jobs: - uses: actions/checkout@v2 - uses: denolib/setup-deno@master - name: Cache dependencies - run: deno cache mod.ts test/mod.test.ts + run: deno cache mod.ts - name: Run test script run: deno test -A \ No newline at end of file From af42f0e1b9109fd63c9a3aae5e1bfe77d8f5bfd9 Mon Sep 17 00:00:00 2001 From: ayyanm Date: Wed, 28 Oct 2020 11:13:14 -0700 Subject: [PATCH 2/3] Change "on" to push temporarily --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1c1a717b5..40a131de7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,8 +1,8 @@ name: Test -on: - push: - branches: - - master +on: [push] +# push: +# branches: +# - master jobs: test: runs-on: ubuntu-latest From 167fe1ca77930413f9b4a40128a7961f85c12e73 Mon Sep 17 00:00:00 2001 From: ayyanm Date: Wed, 28 Oct 2020 11:14:38 -0700 Subject: [PATCH 3/3] Revert "Change "on" to push temporarily" --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 40a131de7..29fcb6ce4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,8 +1,8 @@ name: Test -on: [push] -# push: -# branches: -# - master +on: + push: + branches: + - master jobs: test: runs-on: ubuntu-latest