social bookmarking for atproto

[spindle/test] use prefix flag

hexmani.ac 7195a9dd 5edf4a39

verified
+8 -17
+3 -6
.tangled/workflows/build_backend.yaml
··· 8 8 - nodejs 9 9 10 10 steps: 11 - - name: "Move to backend folder" 12 - command: "cd backend" 13 - 14 11 - name: "Install dependencies" 15 - command: "npm install" 12 + command: "npm install -C ./backend/" 16 13 environment: 17 14 NODE_ENV: "development" 18 15 CI: true 19 16 20 17 - name: "Run linter" 21 - command: "npm run lint" 18 + command: "npm run lint -C ./backend/" 22 19 23 20 - name: "Build application" 24 - command: "npm run build" 21 + command: "npm run build -C ./backend/" 25 22 environment: 26 23 NODE_ENV: "production" 27 24
+2 -5
.tangled/workflows/build_frontend.yaml
··· 8 8 - nodejs 9 9 10 10 steps: 11 - - name: "Move to frontend folder" 12 - command: "cd frontend" 13 - 14 11 - name: "Install dependencies" 15 - command: "npm install" 12 + command: "npm install -C ./frontend/" 16 13 environment: 17 14 NODE_ENV: "development" 18 15 CI: true 19 16 20 17 - name: "Build frontend" 21 - command: "npm run build" 18 + command: "npm run build -C ./frontend/" 22 19 23 20 clone: 24 21 skip: false
+3 -6
.tangled/workflows/build_lexicons.yaml
··· 8 8 - nodejs 9 9 10 10 steps: 11 - - name: "Move to lexicons folder" 12 - command: "cd lexicons" 13 - 14 11 - name: "Install dependencies" 15 - command: "npm install" 12 + command: "npm install -C ./lexicons/" 16 13 environment: 17 14 NODE_ENV: "development" 18 15 CI: true 19 16 20 17 - name: "Generate lexicons" 21 - command: "npm run generate" 18 + command: "npm run generate -C ./lexicons/" 22 19 23 20 - name: "Build package" 24 - command: "npm run prepublish" 21 + command: "npm run prepublish -C ./lexicons/" 25 22 environment: 26 23 NODE_ENV: "production" 27 24