forked from Mirror/attic-action
* feat: add flake devShell * chore: add prettier * fix: respect cache input during configure * feat: auto push paths * feat: add test workflow * chore: update index.js * refactors * pnpm lock * more refactors * remove copying --------- Co-authored-by: Ryan Cao <70191398+ryanccn@users.noreply.github.com>
9 lines
172 B
TypeScript
9 lines
172 B
TypeScript
import { install } from "./stages/install";
|
|
import { configure } from "./stages/configure";
|
|
|
|
const main = async () => {
|
|
await install();
|
|
await configure();
|
|
};
|
|
|
|
main();
|