mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-01 01:21:15 +01:00
30 lines
706 B
YAML
30 lines
706 B
YAML
name: build
|
|
on: [push, pull_request]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Checkout code
|
|
uses: actions/checkout@v3
|
|
-
|
|
name: Install Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: '1.19.x'
|
|
-
|
|
name: Install node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '18'
|
|
cache: 'npm'
|
|
cache-dependency-path: './web/package-lock.json'
|
|
-
|
|
name: Install dependencies
|
|
run: make build-deps-ubuntu
|
|
-
|
|
name: Build all the things
|
|
run: make build
|
|
-
|
|
name: Print build results and checksums
|
|
run: make cli-build-results
|