Skip to content

Bump server from 28cd2fd to 3ac9d6e #1174

Bump server from 28cd2fd to 3ac9d6e

Bump server from 28cd2fd to 3ac9d6e #1174

Workflow file for this run

name: Compile
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
node-version: [18, 20]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm ci and compile
run: |
npm ci
npm run compile
cd client
npm run lint
npm test
env:
CI: true