Skip to content

chore(ci): workflows: rename to shared filenames #1

chore(ci): workflows: rename to shared filenames

chore(ci): workflows: rename to shared filenames #1

Workflow file for this run

name: lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: frontend/package-lock.json
- name: Build frontend
run: |
cd frontend
npm ci
npm run build
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: latest
args: --timeout 3m --max-same-issues 0 --max-issues-per-linter 0 --verbose