ntfy/.github/workflows/build.yaml

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

25 lines
660 B
YAML
Raw Normal View History

name: build
2024-03-08 04:07:42 +13:00
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
2024-03-08 04:07:42 +13:00
- name: Checkout code
uses: actions/checkout@v3
2024-03-08 04:07:42 +13:00
- name: Install Go
uses: actions/setup-go@v4
with:
2024-03-08 04:07:42 +13:00
go-version: '1.22.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'
2024-03-08 04:07:42 +13:00
- name: Install dependencies
run: make build-deps-ubuntu
2024-03-08 04:07:42 +13:00
- name: Build all the things
run: make build
2024-03-08 04:07:42 +13:00
- name: Print build results and checksums
run: make cli-build-results