Fix/deno gitpod (#3213)

* chore(.gitignore): remove pnpm error logs from git

* ci: install deno in gitpod
tests won't run in gitpod without deno
This commit is contained in:
Okiki Ojo 2022-05-03 10:56:16 -04:00 committed by GitHub
parent 5aec49e5e8
commit 6ca2128aee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
.gitpod.Dockerfile vendored
View file

@ -2,3 +2,7 @@ FROM gitpod/workspace-node
# Install latest pnpm
RUN pnpm i -g pnpm
# Install deno in gitpod
RUN curl -fsSL https://deno.land/x/install/install.sh | sh
RUN /home/gitpod/.deno/bin/deno completions bash > /home/gitpod/.bashrc.d/90-deno && echo 'export DENO_INSTALL="/home/gitpod/.deno"' >> /home/gitpod/.bashrc.d/90-deno && echo 'export PATH="$DENO_INSTALL/bin:$PATH"' >> /home/gitpod/.bashrc.d/90-deno