ntfy/.github/workflows/test.yaml

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

40 lines
938 B
YAML
Raw Normal View History

2021-12-08 05:50:48 +13:00
name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
2022-10-02 08:50:48 +13:00
steps:
-
name: Checkout code
uses: actions/checkout@v3
-
name: Install Go
uses: actions/setup-go@v4
2021-12-08 05:50:48 +13:00
with:
2023-11-15 23:55:01 +13:00
go-version: '1.21.x'
-
name: Install node
uses: actions/setup-node@v3
2022-03-06 15:15:40 +13:00
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 docs (required for tests)
2021-12-08 06:23:42 +13:00
run: make docs
-
name: Build web app (required for tests)
2022-03-06 15:15:40 +13:00
run: make web
-
name: Run tests, formatting, vetting and linting
2021-12-08 05:50:48 +13:00
run: make check
-
name: Run coverage
2021-12-08 06:23:42 +13:00
run: make coverage
-
name: Upload coverage to codecov.io
2021-12-08 08:50:46 +13:00
run: make coverage-upload