From 31bd74cfc1fd154287fb4127d19279014d2c3f9c Mon Sep 17 00:00:00 2001 From: OKAMOTO Shigehiro Date: Tue, 23 Jan 2024 14:36:11 +0900 Subject: [PATCH] =?UTF-8?q?=E8=87=AA=E5=8B=95=E3=83=93=E3=83=AB=E3=83=89?= =?UTF-8?q?=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/main.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..fa0bd74 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,20 @@ +name: Auto Build + +on: [push] + +jobs: + build_and_test: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: npm install, and tsc + run: | + npm install + npm run -w gas tsc + - name: Archive production artifacts + uses: actions/upload-artifact@v4 + with: + name: dist + path: | + gas/dist/main.js