ntfy/.github/workflows/build.yaml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
706 B
YAML
Raw Normal View History

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:
2023-11-15 23:55:01 +13:00
go-version: '1.21.x'
-
name: Install node
uses: actions/setup-node@v3
with:
2023-11-15 23:55:01 +13:00
node-version: '20'
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