From 7be4efef5819d6dd4d9c92197d5b8b097f7746dc Mon Sep 17 00:00:00 2001 From: watsonb8 Date: Wed, 5 Jun 2024 10:01:21 -0500 Subject: [PATCH] Adding gitea action first pass --- .gitea/workflows/build.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..8b40d8b --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,17 @@ +name: Build homebridge-hue-chase +on: + workflow_dispatch: + push: + branches: + - master + +jobs: + Build: + runs-on: internal + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 18 + - run: npm ci + - run: npm run build \ No newline at end of file