Skip to content

Add screenshot to README for Fivemanage Lite #161

Add screenshot to README for Fivemanage Lite

Add screenshot to README for Fivemanage Lite #161

Workflow file for this run

name: Lint
on:
pull_request:
types:
- opened
- synchronize
jobs:
lint_frontend:
name: Lint frontend
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./web
strategy:
matrix:
node-version: [22]
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache-dependency-path: ./web/pnpm-lock.yaml
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run lint
run: pnpm lint
lint_backend:
name: Lint backend
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: stable
- name: golangci-lint
uses: golangci/golangci-lint-action@v8
with:
version: v2.1