mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-01 09:31:18 +01:00
39 lines
961 B
YAML
39 lines
961 B
YAML
name: build
|
|
on: [push, pull_request]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Install Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: '1.19.x'
|
|
-
|
|
name: Install node
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '18'
|
|
-
|
|
name: Checkout code
|
|
uses: actions/checkout@v2
|
|
-
|
|
name: Cache Go and npm modules
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
~/go/pkg/mod
|
|
~/go/bin
|
|
~/.npm
|
|
web/node_modules
|
|
key: ${{ runner.os }}-ntfy-${{ hashFiles('**/go.sum', '**/package.lock') }}
|
|
restore-keys: ${{ runner.os }}-ntfy-
|
|
-
|
|
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
|