Skip to content

Server

Server #54

Workflow file for this run

name: Test
on: pull_request
jobs:
test:
env:
SDL_VIDEODRIVER: "dummy"
SDL_AUDIODRIVER: "disk"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- name: prerequisites
run: |
yarn install
- name: lint
run: |
yarn lint
- name: tests
run: |
yarn run e2e