ef005ef0b2
And a bonus health endpoint to make the simplest test possible
21 lines
370 B
YAML
21 lines
370 B
YAML
name: Server CI
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: server
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Setup node
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '16'
|
|
- name: Install deps
|
|
run: yarn
|
|
- name: Run tests
|
|
run: yarn test
|