Skip to content

Bump postcss from 8.4.33 to 8.4.35 in /web #75

Bump postcss from 8.4.33 to 8.4.35 in /web

Bump postcss from 8.4.33 to 8.4.35 in /web #75

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: 'latest'
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'npm'
cache-dependency-path: web/package-lock.json
- run: npm ci
working-directory: web
- run: npm run lint
working-directory: web