Skip to content

build(deps): bump github.com/wailsapp/wails/v2 from 2.13.0 to 2.14.0 in /app in the desktop-dependencies group #37

build(deps): bump github.com/wailsapp/wails/v2 from 2.13.0 to 2.14.0 in /app in the desktop-dependencies group

build(deps): bump github.com/wailsapp/wails/v2 from 2.13.0 to 2.14.0 in /app in the desktop-dependencies group #37

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
server:
name: Go server
runs-on: ubuntu-latest
defaults:
run:
working-directory: server
steps:
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version-file: server/go.mod
cache-dependency-path: server/go.sum
- run: go test ./...
- run: go vet ./...
desktop:
name: Windows desktop host
runs-on: windows-latest
defaults:
run:
working-directory: app
steps:
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version-file: app/go.mod
cache-dependency-path: |
app/go.sum
server/go.sum
- run: go test ./...
- run: go vet ./...
web:
name: Web build and E2E
runs-on: ubuntu-latest
defaults:
run:
working-directory: web
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: 22
cache: npm
cache-dependency-path: web/package-lock.json
- run: npm ci
- run: npx playwright install --with-deps chromium
- run: npm run build
- run: npm run build:desktop
- run: npm run test:e2e