Skip to content

feat(pwa): implement PWA #22

feat(pwa): implement PWA

feat(pwa): implement PWA #22

Workflow file for this run

name: Golang linters
on:
push:
branches:
- "main"
- "develop"
tags:
- "v*"
pull_request:
env:
GO_VERSION: "1.23"
NODE_VERSION: "20.17.0"
jobs:
nilaway:
name: Nilaway Linter
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
cache: true
- name: Install Nilaway
run: go install go.uber.org/nilaway/cmd/nilaway@latest
- name: Nilaway
continue-on-error: true
run: nilaway ./...