[spindle] merge workflow changes to main #2

closed
opened by hexmani.ac targeting main from pipeline-test
-8
.idea/jsLibraryMappings.xml
···
-
<?xml version="1.0" encoding="UTF-8"?>
-
<project version="4">
-
<component name="JavaScriptLibraryMappings">
-
<file url="file://$PROJECT_DIR$/backend" libraries="{clippr/backend/node_modules}" />
-
<file url="file://$PROJECT_DIR$/frontend" libraries="{clippr/frontend/node_modules}" />
-
<file url="PROJECT" libraries="{clippr/backend/node_modules, clippr/frontend/node_modules}" />
-
</component>
-
</project>
···
+2 -5
.tangled/workflows/build_backend.yaml
···
- nodejs
steps:
-
- name: "Get directory layout"
-
command: "ls -alh"
-
- name: "Move to backend folder"
-
command: "cd backend"
- name: "Install dependencies"
-
command: "npm install"
environment:
NODE_ENV: "development"
CI: true
···
- nodejs
steps:
- name: "Move to backend folder"
+
command: "cd /tangled/workspace/backend"
- name: "Install dependencies"
+
command: "npm install backend/package.json"
environment:
NODE_ENV: "development"
CI: true
+2 -5
.tangled/workflows/build_frontend.yaml
···
- nodejs
steps:
-
- name: "Get directory layout"
-
command: "ls -alh"
-
- name: "Move to frontend folder"
-
command: "cd frontend"
- name: "Install dependencies"
-
command: "npm install"
environment:
NODE_ENV: "development"
CI: true
···
- nodejs
steps:
- name: "Move to frontend folder"
+
command: "cd /tangled/workspace/frontend"
- name: "Install dependencies"
+
command: "npm install frontend/package.json"
environment:
NODE_ENV: "development"
CI: true
+2 -5
.tangled/workflows/build_lexicons.yaml
···
- nodejs
steps:
-
- name: "Get directory layout"
-
command: "ls -alh"
-
- name: "Move to lexicons folder"
-
command: "cd lexicons"
- name: "Install dependencies"
-
command: "npm install"
environment:
NODE_ENV: "development"
CI: true
···
- nodejs
steps:
- name: "Move to lexicons folder"
+
command: "cd /tangled/workspace/lexicons"
- name: "Install dependencies"
+
command: "npm install lexicons/package.json"
environment:
NODE_ENV: "development"
CI: true