mirror of
https://github.com/UA-Fediland/synapse-admin.git
synced 2024-11-09 00:04:50 +00:00
22 lines
402 B
YAML
22 lines
402 B
YAML
|
name: build-test
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: ["master"]
|
||
|
pull_request:
|
||
|
|
||
|
jobs:
|
||
|
check:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
- name: Setup node
|
||
|
uses: actions/setup-node@v2
|
||
|
with:
|
||
|
node-version: 14
|
||
|
- name: Install dependencies
|
||
|
run: yarn --frozen-lockfile
|
||
|
- name: Run tests
|
||
|
run: yarn test
|