mirror of
https://github.com/OutlineFoundation/outline-server.git
synced 2026-09-21 13:14:31 +00:00
135 lines
3.1 KiB
YAML
135 lines
3.1 KiB
YAML
# Copyright 2024 The Outline Authors
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
name: Build and Test
|
|
|
|
concurrency:
|
|
group: ${{ github.head_ref || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- synchronize
|
|
push:
|
|
branches:
|
|
- master
|
|
schedule:
|
|
- cron: "0 13 * * *" # Run daily at 1PM UTC.
|
|
|
|
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
|