diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 49e4aab..99ae6e6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,7 +31,9 @@ jobs: # uses: denoland/setup-deno@v1 # with: # deno-version: ${{ matrix.deno-version }} - # - run: npx pm2 start ./scripts/harness.sh && ./scripts/ci.sh + # - run: npx pm2 start ./scripts/harness.sh + # - run: curl localhost:6363 + # - run: ./scripts/ci.sh # env: # HYPER: http://localhost:6363/test # CI: true diff --git a/.gitpod.yml b/.gitpod.yml index c894a1d..8c73865 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,6 +1,11 @@ image: file: .gitpod.Dockerfile +ports: + - port: 6379 + visibility: private + onOpen: ignore + tasks: - command: redis-server - init: git config core.hooksPath .hooks diff --git a/scripts/test.sh b/scripts/test.sh index 3b479a3..44de4cd 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash deno lint && \ -deno fmt --check && \./s +deno fmt --check && \ deno test adapter_test.js