mirror of https://github.com/MaxLeiter/Drift
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
370 B
YAML
22 lines
370 B
YAML
3 years ago
|
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
|