ntfy/.github/workflows/test.yaml

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

31 lines
868 B
YAML
Raw Permalink Normal View History

2021-12-07 17:50:48 +01:00
name: test
2024-03-07 16:07:42 +01:00
on: [ push, pull_request ]
2021-12-07 17:50:48 +01:00
jobs:
test:
runs-on: ubuntu-latest
2022-10-01 21:50:48 +02:00
steps:
2024-03-07 16:07:42 +01:00
- name: Checkout code
uses: actions/checkout@v3
2024-03-07 16:07:42 +01:00
- name: Install Go
uses: actions/setup-go@v4
2021-12-07 17:50:48 +01:00
with:
2024-03-07 16:07:42 +01:00
go-version: '1.22.x'
- name: Install node
uses: actions/setup-node@v3
2022-03-06 03:15:40 +01:00
with:
2023-11-15 11:55:01 +01:00
node-version: '20'
cache: 'npm'
cache-dependency-path: './web/package-lock.json'
2024-03-07 16:07:42 +01:00
- name: Install dependencies
run: make build-deps-ubuntu
2024-03-07 16:07:42 +01:00
- name: Build docs (required for tests)
2021-12-07 18:23:42 +01:00
run: make docs
2024-03-07 16:07:42 +01:00
- name: Build web app (required for tests)
2022-03-06 03:15:40 +01:00
run: make web
2024-03-07 16:07:42 +01:00
- name: Run tests, formatting, vetting and linting
2021-12-07 17:50:48 +01:00
run: make check
2024-03-07 16:07:42 +01:00
- name: Run coverage
2021-12-07 18:23:42 +01:00
run: make coverage
2024-03-07 16:07:42 +01:00
- name: Upload coverage to codecov.io
2021-12-07 20:50:46 +01:00
run: make coverage-upload