From b2fdbd5fa4ccd5018021cced35c65e47f93c5831 Mon Sep 17 00:00:00 2001 From: Romein van Buren Date: Tue, 30 May 2023 15:25:47 +0200 Subject: [PATCH] Added CI workflow --- .github/workflows/ci.yml | 48 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..0f15d43 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,48 @@ +name: CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + name: Build Rolens + + strategy: + matrix: + platform: [windows-2022, macos-12, ubuntu-22.04] + go-version: [1.18] + node-version: [16] + + runs-on: ${{ matrix.platform }} + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Set up Go + uses: actions/setup-go@v3 + with: + go-version: ${{ matrix.go-version }} + + - name: Install Wails + run: go install github.com/wailsapp/wails/v2/cmd/wails@latest + + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + + - name: Install frontend dependencies + run: cd frontend && npm ci && cd .. + + - name: Build Rolens + run: wails build + + - name: Upload binary + uses: actions/upload-artifact@v2 + with: + name: rolens-${{ matrix.platform }} + path: build/bin/*