Skip to content

Plan npc library for game masters #7

Plan npc library for game masters

Plan npc library for game masters #7

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
- name: Go test
run: go test ./...
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install frontend dependencies
working-directory: web/app
run: npm install
- name: Run React smoke test
working-directory: web/app
run: npm test -- --watch=false
- name: Run React unit tests
working-directory: web/app
run: npm run test:unit