-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitpod.yml
More file actions
32 lines (29 loc) · 831 Bytes
/
.gitpod.yml
File metadata and controls
32 lines (29 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
github:
prebuilds:
# enable for the default branch
master: true
# enable for all branches in this repo
branches: false
# enable for pull requests coming from this repo
pullRequests: true
# enable for pull requests coming from forks
pullRequestsFromForks: false
# add a check to pull requests
addCheck: true
# add a "Review in Gitpod" button as a comment to pull requests
addComment: false
# add a "Review in Gitpod" button to the pull request's description
addBadge: true
image: gitpod/workspace-node-lts
tasks:
- name: Setup the environment
before: |
npm install -g pnpm@8.6.7
pnpm install
init: pnpm run prepare
vscode:
extensions:
- EditorConfig.EditorConfig
- eamodio.gitlens
- dbaeumer.vscode-eslint
- esbenp.prettier-vscode