Skip to content

chore(deps): bump eslint from 10.1.0 to 10.2.0 in /frontend #1467

chore(deps): bump eslint from 10.1.0 to 10.2.0 in /frontend

chore(deps): bump eslint from 10.1.0 to 10.2.0 in /frontend #1467

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
jobs:
frontend-cq:
name: Frontend Code Quality
runs-on: ubuntu-latest
permissions:
contents: read
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Read .nvmrc
id: nvmrc
run: echo "node_version=$(cat .nvmrc)" >> $GITHUB_OUTPUT
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
node-version: ${{ steps.nvmrc.outputs.node_version }}
cache: "npm"
cache-dependency-path: frontend/package-lock.json
- run: npm ci --ignore-scripts
- name: ESLint
run: npm run lint
- name: Type check
run: npm run typecheck
- name: Build
run: npm run build
go-cq:
name: Go Code Quality
runs-on: ubuntu-latest
permissions:
contents: read
defaults:
run:
working-directory: backend
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
with:
go-version-file: backend/go.mod
cache-dependency-path: backend/go.sum
- name: Format check
run: test -z "$(gofmt -l .)"
- name: Vet
run: go vet ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9
with:
version: latest
working-directory: backend
- name: Build
run: go build ./...
- name: Test
run: go test -coverprofile=coverage.out ./...
- name: Upload coverage artifact
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: go-coverage
path: backend/coverage.out