diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d66c017a..da93a9b2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,5 +26,8 @@ jobs: with: timezoneLinux: "Europe/Prague" + - name: Cache + run: make cache + - name: Test run: make test \ No newline at end of file diff --git a/Makefile b/Makefile index 69fa969e..6ada77a5 100644 --- a/Makefile +++ b/Makefile @@ -8,5 +8,8 @@ build: test: deno test -A utils/test.js +cache: + deno cache utils/test.js + gen: deno run -A utils/gen.js $(cat) \ No newline at end of file