Skip to content

add funder logo

add funder logo #19

Workflow file for this run

name: Run Tests
on:
push:
branches:
- "**"
tags:
- "**"
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18
- 20
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.JS ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build core
run: npm run build:core
- name: Build lobby
run: npm run build:lobby
# - name: Run tests
# run: npm run test