feat: add since=latest subscribe param #2556
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: [ push, pull_request ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22.x' | |
- name: Install node | |
uses: actions/setup-node@v3 | |
with: | |
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) | |
run: make docs | |
- name: Build web app (required for tests) | |
run: make web | |
- name: Run tests, formatting, vetting and linting | |
run: make check | |
- name: Run coverage | |
run: make coverage | |
- name: Upload coverage to codecov.io | |
run: make coverage-upload |