core/__snapshots__/TestGenerateBuildPlanForExamples_node-version-precedence_1.snap.json
core/__snapshots__/TestGenerateBuildPlanForExamples_node-version-precedence_1.snap.jsonBrowse 1970 files
964 tokens
2,991 bytes
Token encoding: o200k_base
Snapshot 21a254f
← Back to SKILL.md
1{2 "caches": {3 "apt": {4 "directory": "/var/cache/apt",5 "type": "locked"6 },7 "apt-lists": {8 "directory": "/var/lib/apt/lists",9 "type": "locked"10 },11 "node-modules": {12 "directory": "/app/node_modules/.cache",13 "type": "shared"14 },15 "npm-install": {16 "directory": "/root/.npm",17 "type": "shared"18 }19 },20 "deploy": {21 "base": {22 "step": "packages:apt:runtime"23 },24 "inputs": [25 {26 "include": [27 "/mise/shims",28 "/mise/installs",29 "/usr/local/bin/mise",30 "/etc/mise/config.toml",31 "/root/.local/state/mise"32 ],33 "step": "packages:mise"34 },35 {36 "include": [37 "/app/node_modules"38 ],39 "step": "build"40 },41 {42 "exclude": [43 "node_modules",44 ".yarn"45 ],46 "include": [47 "/root/.cache",48 "."49 ],50 "step": "build"51 }52 ],53 "startCommand": "npm run start",54 "variables": {55 "CI": "true",56 "NODE_ENV": "production",57 "NPM_CONFIG_FETCH_RETRIES": "5",58 "NPM_CONFIG_FUND": "false",59 "NPM_CONFIG_PRODUCTION": "false",60 "NPM_CONFIG_UPDATE_NOTIFIER": "false",61 "RAILPACK_VERSION": "dev"62 }63 },64 "steps": [65 {66 "assets": {67 "generated-mise-toml": "[generated-mise-toml]"68 },69 "commands": [70 {71 "path": "/mise/shims"72 },73 {74 "customName": "create mise config",75 "name": "generated-mise-toml",76 "path": "/etc/mise/config.toml"77 },78 {79 "cmd": "mise install",80 "customName": "install mise packages: node"81 }82 ],83 "inputs": [84 {85 "image": "ghcr.io/railwayapp/railpack-builder:mise-2026.9.9"86 }87 ],88 "name": "packages:mise",89 "variables": {90 "MISE_CACHE_DIR": "/mise/cache",91 "MISE_CONFIG_DIR": "/mise",92 "MISE_DATA_DIR": "/mise",93 "MISE_INSTALLS_DIR": "/mise/installs",94 "MISE_SHIMS_DIR": "/mise/shims"95 }96 },97 {98 "caches": [99 "npm-install"100 ],101 "commands": [102 {103 "path": "/app/node_modules/.bin"104 },105 {106 "cmd": "mkdir -p /app/node_modules/.cache"107 },108 {109 "dest": "package.json",110 "src": "package.json"111 },112 {113 "cmd": "npm install"114 }115 ],116 "inputs": [117 {118 "step": "packages:mise"119 }120 ],121 "name": "install",122 "variables": {123 "CI": "true",124 "NODE_ENV": "production",125 "NPM_CONFIG_FETCH_RETRIES": "5",126 "NPM_CONFIG_FUND": "false",127 "NPM_CONFIG_PRODUCTION": "false",128 "NPM_CONFIG_UPDATE_NOTIFIER": "false"129 }130 },131 {132 "caches": [133 "node-modules"134 ],135 "inputs": [136 {137 "step": "install"138 },139 {140 "include": [141 "."142 ],143 "local": true144 }145 ],146 "name": "build",147 "secrets": [148 "*"149 ]150 },151 {152 "caches": [153 "apt",154 "apt-lists"155 ],156 "commands": [157 {158 "cmd": "sh -c 'apt-get update \u0026\u0026 apt-get install -y libatomic1'",159 "customName": "install apt packages: libatomic1"160 }161 ],162 "inputs": [163 {164 "image": "ghcr.io/railwayapp/railpack-runtime:mise-2026.9.9"165 }166 ],167 "name": "packages:apt:runtime"168 }169 ]170}