CoastalCommitsPastes/.github/workflows/server-CI.yaml
Joaquin "Florius" Azcarate ef005ef0b2
server: Add first e2e test, github action, health endpoint (#68)
And a bonus health endpoint to make the simplest test possible
2022-04-03 12:47:37 -07:00

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