From ab304cb16c85ed8a6e2444a82471ad1d513abd61 Mon Sep 17 00:00:00 2001 From: pccommen Date: Mon, 12 Aug 2024 10:45:44 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20github=20Action=EC=9D=98=20=EB=A7=9E?= =?UTF-8?q?=EB=8A=94=20=EC=83=88=EB=A1=9C=EC=9A=B4=20appspec.yml=EC=9D=84?= =?UTF-8?q?=20=EA=B5=AC=ED=98=84=20(CC-134)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/appspec.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/appspec.yml diff --git a/.github/workflows/appspec.yml b/.github/workflows/appspec.yml new file mode 100644 index 0000000..260a18a --- /dev/null +++ b/.github/workflows/appspec.yml @@ -0,0 +1,16 @@ +name: CI + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up Node.js + uses: actions/setup-node@v2 + with: + node-version: "14" + - run: npm install + - run: npm test