-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnet-task.yml
33 lines (32 loc) · 845 Bytes
/
net-task.yml
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
version: 1
name: markdown-mindmap
tasks:
frontend:test:
shell: |
cd modules/frontend
# npm run lint
# TODO: turn on lint + tests
frontend:lint:
shell: |
cd modules/frontend
npm run lint
all:ci:start:
description: force a CI build in the current branch
os: unix
shell: bundle exec cody start --branch=$(git branch --show-current)
frontend:ci:package:
shell: |
cd modules/frontend
npm run build
frontend:start_app:
description: soon will be how to launch the frontend
shell: |
cd modules/frontend/
npm run dev
frontend:install:
description: could be named install_dependencies. Sets up corepack etc
os: unix
shell: |
cd modules/frontend/
yes | npx corepack install # prompts the user, blergh
npx corepack yarn install