core: add new domain join logic #5847
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
- push | |
- pull_request | |
env: | |
CI: true | |
YARN_ENABLE_IMMUTABLE_INSTALLS: 'false' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
fetch-depth: 2 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn config get cacheFolder)" | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
${{ steps.yarn-cache-dir-path.outputs.dir }} | |
yarn.lock | |
.cache | |
**/tsconfig.tsbuildinfo | |
key: cache-${{ github.ref }}-${{ github.sha }} | |
restore-keys: | | |
cache-${{ github.ref }}- | |
cache- | |
- name: Clear Cache | |
if: "contains(github.event.head_commit.message, 'skip-cache')" | |
run: | | |
rm -rf node_modules yarn.lock **/tsconfig.tsbuildinfo | |
- name: Config And Install | |
run: | | |
[[ ! -z "${{secrets.NPM_TOKEN}}" ]] && echo "npmAuthToken: ${{secrets.NPM_TOKEN}}" >> .yarnrc.yml | |
git config --global user.name undefined | |
git config --global user.email [email protected] | |
yarn | |
yarn dedupe | |
env: | |
LICENSE_KEY: ${{ secrets.MAXMIND_KEY }} | |
- name: Get specific changed files | |
id: ui-changed-files | |
uses: tj-actions/changed-files@v41 | |
with: | |
files: | | |
/package.json | |
.eslint* | |
packages/ui-default/** | |
packages/utils/** | |
.github/workflows/** | |
- name: Build And Lint | |
run: | | |
if [[ ${{ steps.ui-changed-files.outputs.any_changed }} == true ]] || [[ $(npm info @hydrooj/ui-default version) != $(node -e 'console.log(require("./packages/ui-default/package.json").version)') ]] | |
then | |
yarn build:ui:iconfont | |
parallel --tty -j+0 yarn ::: lint:ci lint:ui:ci build build:ui:production:webpack test | |
else | |
parallel --tty -j+0 yarn ::: lint:ci build test | |
fi | |
env: | |
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
- name: Publish | |
if: ${{ github.event_name == 'push' }} | |
run: node -r @hydrooj/register build/publish.ts | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
# - name: Benchmark | |
# run: yarn benchmark | |
# - name: Benchmark result | |
# uses: benchmark-action/github-action-benchmark@v1 | |
# with: | |
# name: Benchmark | |
# tool: customBiggerIsBetter | |
# output-file-path: benchmark.json | |
# web: | |
# needs: build | |
# permissions: | |
# packages: write | |
# contents: read | |
# runs-on: ubuntu-latest | |
# if: ${{ github.event_name == 'push' }} | |
# steps: | |
# - name: Check out | |
# uses: actions/checkout@v2 | |
# with: | |
# submodules: recursive | |
# - name: Log in to GitHub Docker Registry | |
# uses: docker/login-action@v1 | |
# with: | |
# registry: docker.pkg.github.com | |
# username: ${{ github.actor }} | |
# password: ${{ secrets.GITHUB_TOKEN }} | |
# - name: Docker:Web | |
# uses: docker/build-push-action@v2 | |
# with: | |
# push: true | |
# context: ./install/docker/backend | |
# tags: | | |
# docker.pkg.github.com/hydro-dev/web:${{ github.sha }} | |
# docker.pkg.github.com/hydro-dev/web:${{ github.ref }} | |
# judge: | |
# needs: build | |
# if: ${{ github.event_name == 'push' }} | |
# permissions: | |
# packages: write | |
# contents: read | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Check out | |
# uses: actions/checkout@v2 | |
# with: | |
# submodules: recursive | |
# - name: Log in to GitHub Docker Registry | |
# uses: docker/login-action@v1 | |
# with: | |
# registry: docker.pkg.github.com | |
# username: ${{ github.actor }} | |
# password: ${{ secrets.GITHUB_TOKEN }} | |
# - name: Docker:Judge | |
# uses: docker/build-push-action@v2 | |
# with: | |
# push: true | |
# context: ./install/docker/judge | |
# tags: | | |
# docker.pkg.github.com/hydro-dev/judge:${{ github.sha }} | |
# docker.pkg.github.com/hydro-dev/judge:${{ github.ref }} |