forked from open-sauced/open-sauced
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitpod.yml
More file actions
37 lines (33 loc) · 717 Bytes
/
.gitpod.yml
File metadata and controls
37 lines (33 loc) · 717 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
33
34
35
36
37
image:
file: .gitpod.Dockerfile
github:
prebuilds:
master: true
branches: true
pullRequests: true
pullRequestsFromForks: true
addCheck: false
addComment: false
addBadge: true
ports:
- port: 3000
onOpen: open-preview
tasks:
- name: Install dependencies
init: npm ci
command: gp sync-done build
- name: Run vite dev
init: gp sync-await build
command: npm start
openMode: tab-after
- name: Run jest tests
init: gp sync-await build
command: npm t
openMode: tab-after
vscode:
extensions:
- dbaeumer.vscode-eslint
- mikestead.dotenv
- eg2.vscode-npm-script
- editorconfig.editorconfig
- christian-kohler.npm-intellisense