Skip to content

build(deps-dev): bump eslint from 9.17.0 to 9.18.0 in /action #441

build(deps-dev): bump eslint from 9.17.0 to 9.18.0 in /action

build(deps-dev): bump eslint from 9.17.0 to 9.18.0 in /action #441

Workflow file for this run

name: Server > Build
on:
push:
branches: ['**']
paths:
- server/**
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: server
steps:
- uses: actions/checkout@v4
with:
sparse-checkout: server
sparse-checkout-cone-mode: false
# build the action
- uses: actions/setup-node@v4
with:
cache-dependency-path: server/package-lock.json
node-version: '20'
cache: 'npm'
- run: npm ci
- run: npm run test
- run: npm run build