Skip to content

Release v1.3.6

Release v1.3.6 #101

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 22
cache: npm
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: apps/server/go.mod
cache-dependency-path: apps/server/go.sum
- name: Install dependencies
run: npm ci
- name: Typecheck and build app
env:
GOCACHE: ${{ runner.temp }}/go-build-cache
run: npm run build:prod