CoastalCommitsPastes/.github/workflows/server-CI.yaml
renovate[bot] 6481de22d4
chore(deps): update actions/setup-node action to v3 (#93)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-04-12 13:39:33 -07:00

26 lines
432 B
YAML

name: Server CI
on:
push:
paths:
- 'server/**'
- '.github/workflows/**'
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: server
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install deps
run: yarn
- name: Run tests
run: yarn test