From 9cf5d2c679d04f8f9104421f9b94625ecd92e226 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=A5=E6=B5=A9?= Date: Mon, 30 Sep 2024 14:35:49 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=20action.yml=20=E6=96=87?= =?UTF-8?q?=E4=BB=B6=EF=BC=8C=E5=AE=9A=E4=B9=89=E4=B8=80=E4=B8=AA=E7=AE=80?= =?UTF-8?q?=E5=8D=95=E7=9A=84=E2=80=9CHello=20World=E2=80=9D=E5=B7=A5?= =?UTF-8?q?=E4=BD=9C=E6=B5=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- action.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 action.yml diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..80ef1d4 --- /dev/null +++ b/action.yml @@ -0,0 +1,13 @@ +name: "Hello World" +description: "Greet someone" +runs: + using: "composite" + steps: + - name: Checkout + id: checkout + uses: actions/checkout@main + - uses: actions/setup-node@v4 + id: setup-node + with: + node-version: lts/* + cache: '' \ No newline at end of file