Skip to content

Bump browserslist from 4.16.3 to 4.21.7 in /monitoring/web #11

Bump browserslist from 4.16.3 to 4.21.7 in /monitoring/web

Bump browserslist from 4.16.3 to 4.21.7 in /monitoring/web #11

Workflow file for this run

name: Regular Test
on: push
jobs:
compile:
name: Compile
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 'stable'
- name: Build
run: go build ./...
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 'stable'
cache: false
- name: Install golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: 'latest'
args: --timeout=10m
unit_test:
name: Unit Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 'stable'
- name: Unit Test
run: |
go test -coverprofile=cover.out ./...
go tool cover -func=cover.out > coverage.out
tail coverage.out