mirror of
https://github.com/OutlineFoundation/outline-server.git
synced 2026-05-13 05:52:04 +00:00
119 lines
2.5 KiB
YAML
119 lines
2.5 KiB
YAML
name: Build and Test
|
|
|
|
concurrency:
|
|
group: ${{ github.head_ref || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- synchronize
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
lint:
|
|
name: Lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2.3.4
|
|
|
|
- name: Install Node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
cache: npm
|
|
|
|
- name: Install NPM Dependencies
|
|
run: npm ci
|
|
|
|
- name: Lint
|
|
run: ./task lint
|
|
|
|
shadowbox:
|
|
name: Shadowbox
|
|
runs-on: ubuntu-latest
|
|
needs: lint
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2.3.4
|
|
|
|
- name: Install Node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
cache: npm
|
|
|
|
- name: Install NPM Dependencies
|
|
run: npm ci
|
|
|
|
- name: Shadowbox Debug Build
|
|
run: ./task shadowbox:build
|
|
|
|
- name: Shadowbox Unit Test
|
|
run: ./task shadowbox:test
|
|
|
|
- name: Shadowbox Integration Test
|
|
run: ./task shadowbox:integration_test
|
|
|
|
manual-install-script:
|
|
name: Manual Install Script
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2.3.4
|
|
|
|
- name: Install Outline Server
|
|
run: ./src/server_manager/install_scripts/install_server.sh --hostname localhost
|
|
|
|
- name: Test API
|
|
run: 'curl --silent --fail --insecure $(grep "apiUrl" /opt/outline/access.txt | cut -d: -f 2-)/server'
|
|
|
|
metrics-server:
|
|
name: Metrics Server
|
|
runs-on: ubuntu-latest
|
|
needs: lint
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2.3.4
|
|
|
|
- name: Install Node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
cache: npm
|
|
|
|
- name: Install NPM Dependencies
|
|
run: npm ci
|
|
|
|
- name: Metrics Server Debug Build
|
|
run: ./task metrics_server:build
|
|
|
|
- name: Metrics Server Test
|
|
run: ./task metrics_server:test
|
|
|
|
sentry-webhook:
|
|
name: Sentry Webhook
|
|
runs-on: ubuntu-latest
|
|
needs: lint
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2.3.4
|
|
|
|
- name: Install Node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
cache: npm
|
|
|
|
- name: Install NPM Dependencies
|
|
run: npm ci
|
|
|
|
- name: Sentry Webhook Debug Build
|
|
run: ./task sentry_webhook:build
|
|
|
|
- name: Sentry Webhook Test
|
|
run: ./task sentry_webhook:test
|