attic-action/src/index.ts
seth 5dc7b671af
feat: auto push store paths and add CI (#1)
* 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>
2023-07-19 09:53:49 +08:00

9 lines
172 B
TypeScript

import { install } from "./stages/install";
import { configure } from "./stages/configure";
const main = async () => {
await install();
await configure();
};
main();