Skip to content

Bump react-router-dom from 6.21.3 to 6.22.0 in /web #70

Bump react-router-dom from 6.21.3 to 6.22.0 in /web

Bump react-router-dom from 6.21.3 to 6.22.0 in /web #70

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