From 5e239cbd004721bd6d72919c080656d1206e5739 Mon Sep 17 00:00:00 2001 From: ikoamu Date: Tue, 23 Jan 2024 23:47:37 +0900 Subject: Add org-roam-ui and setup Node --- action.yml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'action.yml') diff --git a/action.yml b/action.yml index 487190c..b20a5bc 100644 --- a/action.yml +++ b/action.yml @@ -4,5 +4,22 @@ runs: using: "composite" steps: - name: "Test" - run: echo "Hello World!" + run: ls -l shell: bash + + - name: Checkout org-roam-ui + uses: actions/checkout@v4 + with: + repository: ikoamu/org-roam-ui + ref: feature/add-export-functionality + path: ui + + - name: "Test" + run: ls -l + shell: bash + + - name: Setup Node + uses: actions/setup-node@v3 + with: + node-version: "20.x" + -- cgit