From 321302cdeaf7d79fde4363662482a6b3928a1362 Mon Sep 17 00:00:00 2001 From: 0xdevant <0xdevant@gmail.com> Date: Sat, 18 May 2024 18:00:27 +0800 Subject: [PATCH] chore: remove caching on github action for test --- .github/workflows/test.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 112fb98f..eac7ce55 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,11 +3,11 @@ name: Test on: push: branches: - - main # Set a branch to deploy + - main # Set a branch to deploy pull_request: - + jobs: - deploy: + test: runs-on: ubuntu-latest concurrency: group: ${{ github.workflow }}-${{ github.ref }} @@ -16,7 +16,7 @@ jobs: steps: - uses: actions/checkout@v4 with: - fetch-depth: 0 + fetch-depth: 0 - uses: denoland/setup-deno@v1 with: @@ -26,8 +26,5 @@ jobs: with: timezoneLinux: "Europe/Prague" - - name: Cache - run: make cache - - name: Test run: make test