Skip to content

Upgrade npm packages, removed unused github actions #60

Upgrade npm packages, removed unused github actions

Upgrade npm packages, removed unused github actions #60

# This workflow will do our code style checks for the Server
name: Server Code style (prettier, lint)
on:
push:
branches: [develop, main]
pull_request:
branches: [develop, main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
# Note: keep this the same as the version on Heroku!
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm ci
working-directory: server
- run: npm run code-style-check
working-directory: server