mirror of
https://github.com/OutlineFoundation/outline-server.git
synced 2026-05-13 13:58:57 +00:00
* chore: upgrade to lts/hydrogen * update github workflows * fix attempt #1 * ssl, restify upgrade * more openssl options * ah thanks sander, using middleware2 * fix ci * reset package-lock.json * revert middleware2 * fix optional chaining * okay cool tests run, but fail * partially update the node image (i can't find the other one) * Update test.action.sh * Update build.action.sh * Update test.action.sh * Update build.action.sh * Update package.json * Update webpack.config.js * Update webpack.config.js * Update build.action.sh * Update build.action.sh * Update package.json * Update README.md
71 lines
1.9 KiB
YAML
71 lines
1.9 KiB
YAML
name: Pull Request Checks
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
|
|
# This `edited` flag is why we need a separate workflow -
|
|
# specifying edited here causes this job to be re-run whenever someone edits the PR title/description.
|
|
|
|
# If we had the debug builds in this file, they would run unnecessarily, costing resources.
|
|
- edited
|
|
|
|
- synchronize
|
|
|
|
jobs:
|
|
name_check:
|
|
name: Pull Request Name Check
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
pull-requests: read
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
steps:
|
|
- name: Clone Repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install Node
|
|
uses: actions/setup-node@v2.2.0
|
|
with:
|
|
node-version: 18
|
|
cache: npm
|
|
|
|
- name: Install NPM Dependencies
|
|
run: npm ci
|
|
|
|
- name: Ensure Commitizen Format
|
|
uses: JulienKode/pull-request-name-linter-action@98794a8b815ec05560813c42e55fd8d32d3fd248
|
|
|
|
size_label:
|
|
name: Change Size Label
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
steps:
|
|
# size-label-action fails to work when coming from a fork:
|
|
# https://github.com/pascalgn/size-label-action/issues/10
|
|
- if: ${{ !github.event.pull_request.head.repo.fork }}
|
|
name: Apply Size Label
|
|
uses: pascalgn/size-label-action@a4655c448bb838e8d73b81e97fd0831bb4cbda1e
|
|
env:
|
|
IGNORED: |
|
|
LICENSE
|
|
package-lock.json
|
|
resources/*
|
|
src/server_manager/messages/*
|
|
src/server_manager/images/*
|
|
third_party/*
|
|
with:
|
|
sizes: >
|
|
{
|
|
"0": "XS",
|
|
"64": "S",
|
|
"128": "M",
|
|
"256": "L",
|
|
"512": "XL",
|
|
"1024": "XXL"
|
|
}
|