Skip to content

Commit

Permalink
feat(dev): add gitpod.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabb-c committed Jul 11, 2021
1 parent 91d2cc8 commit 7553705
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
image: node:alpine
# List the start up tasks. You can start them in parallel in multiple terminals. See https://www.gitpod.io/docs/config-start-tasks/
tasks:
- name: Install Dependencies
init: |
yarn --check-files --silent
command: yarn builld:ci

github:
prebuilds:
# enable for the default branch (defaults to true)
master: true
# enable for all branches in this repo (defaults to false)
branches: false
# enable for pull requests coming from this repo (defaults to true)
pullRequests: true
# enable for pull requests coming from forks (defaults to false)
pullRequestsFromForks: false
# add a check to pull requests (defaults to true)
addCheck: true
# add a "Review in Gitpod" button as a comment to pull requests (defaults to false)
addComment: true
# add a "Review in Gitpod" button to the pull request's description (defaults to false)
addBadge: false

vscode:
extensions:
- dbaeumer.vscode-eslint
- christian-kohler.path-intellisense
- codezombiech.gitignore
- CoenraadS.bracket-pair-colorizer
- DavidAnson.vscode-markdownlint
- dbaeumer.vscode-eslint
- eamodio.gitlens
- EditorConfig.EditorConfig
- ms-vscode.vscode-typescript-next
- redhat.vscode-commons
- VisualStudioExptTeam.vscodeintellicode
- wix.vscode-import-cost
- xabikos.JavaScriptSnippets
- yzhang.markdown-all-in-one

0 comments on commit 7553705

Please sign in to comment.