mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-22 10:03:24 +01:00
0545ad285a
* (feat): Check for existing wrangler installation * Add test for pre-installed wrangler * Add changeset * Address CR comments - check for an exact wrangler version match * Tweak the fixture test for the pre-installed-wrangler test * Simplify if/else logic for checking wrangler versions as per review notes * fix(test): Fix execution for fake wrangler installation * fixup! fix(test): Fix execution for fake wrangler installation * Setup new CI test convention for wrangler-action * Remove unncessary ts-expect-error comments --------- Co-authored-by: Peter Bacon Darwin <pbacondarwin@cloudflare.com>
18 lines
410 B
JavaScript
Executable file
18 lines
410 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
"use strict";
|
|
|
|
const args = Array.from(process.argv);
|
|
const command = args.pop();
|
|
switch (command) {
|
|
case "--version":
|
|
console.log(`
|
|
⛅️ wrangler 1.1.1 (update available 1.2.3)
|
|
------------------------------------------`);
|
|
process.exit(0);
|
|
case "action-test":
|
|
console.log("Test successful.");
|
|
process.exit(0);
|
|
default:
|
|
console.error("Invalid command");
|
|
process.exit(1);
|
|
}
|