[pull] master from monkeytypegame:master #2231
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: Monkey CI | |
env: | |
PNPM_VERSION: "9.6.0" | |
NODE_VERSION: "20.16.0" | |
RECAPTCHA_SITE_KEY: "6Lc-V8McAAAAAJ7s6LGNe7MBZnRiwbsbiWts87aj" | |
permissions: | |
contents: read | |
issues: write | |
pull-requests: write | |
on: | |
pull_request: | |
branches: [master] | |
types: [opened, reopened, synchronize, ready_for_review] | |
push: | |
branches: [master] | |
concurrency: | |
group: group-${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
pre-ci: | |
if: github.event.pull_request.draft == false || contains(github.event.pull_request.labels.*.name, 'force-ci') || contains(github.event.pull_request.labels.*.name, 'force-full-ci') | |
name: pre-ci | |
runs-on: ubuntu-latest | |
outputs: | |
should-build-be: ${{ steps.export-changes.outputs.should-build-be }} | |
should-build-fe: ${{ steps.export-changes.outputs.should-build-fe }} | |
should-build-pkg: ${{ steps.export-changes.outputs.should-build-pkg }} | |
assets-json: ${{ steps.export-changes.outputs.assets-json }} | |
steps: | |
- name: Full checkout | |
uses: actions/checkout@v4 | |
# paths filter doesn't need checkout on pr | |
if: github.event_name != 'pull_request' | |
- name: Detect changes | |
uses: dorny/paths-filter@v3 | |
id: filter | |
with: | |
filters: | | |
json: | |
- 'frontend/**/*.json' | |
be-src: | |
- 'backend/**/*.{ts,js,json,lua,css,html}' | |
- 'backend/package.json' | |
fe-src: | |
- 'frontend/**/*.{ts,scss}' | |
- 'frontend/package.json' | |
pkg-src: | |
- 'packages/**/*' | |
anti-cheat: | |
- 'backend/**/anticheat/**' | |
- name: Check Anti-cheat | |
if: steps.filter.outputs.anti-cheat == 'true' | |
run: exit 1 | |
- name: Export changes | |
id: export-changes | |
run: | | |
echo "should-build-pkg=${{ steps.filter.outputs.pkg-src }}" >> $GITHUB_OUTPUT | |
echo "should-build-be=${{ steps.filter.outputs.be-src }}" >> $GITHUB_OUTPUT | |
echo "should-build-fe=${{ steps.filter.outputs.fe-src }}" >> $GITHUB_OUTPUT | |
echo "assets-json=${{ steps.filter.outputs.json }}" >> $GITHUB_OUTPUT | |
prime-cache: | |
name: prime-cache | |
runs-on: ubuntu-latest | |
needs: [pre-ci] | |
if: needs.pre-ci.outputs.should-build-be == 'true' || needs.pre-ci.outputs.should-build-fe == 'true' || needs.pre-ci.outputs.should-build-pkg == 'true' || needs.pre-ci.outputs.assets-json == 'true' || contains(github.event.pull_request.labels.*.name, 'force-full-ci') | |
steps: | |
- name: Checkout pnpm-lock | |
uses: actions/checkout@v4 | |
with: | |
sparse-checkout: | | |
pnpm-lock.yaml | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: ${{ env.PNPM_VERSION }} | |
- name: Get pnpm store directory | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- name: Cache node modules | |
id: cache-pnpm | |
uses: actions/cache@v4 | |
env: | |
cache-name: node-modules | |
with: | |
path: ${{ env.STORE_PATH }} | |
key: ${{ runner.os }}-${{ env.NODE_VERSION }}-build-${{ env.cache-name }}-${{ hashFiles('pnpm-lock.yaml') }} | |
lookup-only: true | |
- if: ${{ steps.cache-pnpm.outputs.cache-hit != 'true' }} | |
name: Full checkout | |
uses: actions/checkout@v4 | |
- if: ${{ steps.cache-pnpm.outputs.cache-hit != 'true' }} | |
name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- if: ${{ steps.cache-pnpm.outputs.cache-hit != 'true' }} | |
name: Install dependencies | |
run: pnpm install | |
check-pretty: | |
name: check-pretty | |
needs: [pre-ci, prime-cache] | |
runs-on: ubuntu-latest | |
if: needs.pre-ci.outputs.should-build-be == 'true' || needs.pre-ci.outputs.should-build-fe == 'true' || needs.pre-ci.outputs.should-build-pkg == 'true' || needs.pre-ci.outputs.assets-json == 'true' || contains(github.event.pull_request.labels.*.name, 'force-full-ci') | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: ${{ env.PNPM_VERSION }} | |
- name: Install prettier | |
run: pnpm add -g [email protected] | |
- name: Get changed files | |
if: github.event_name == 'pull_request' | |
id: get-changed-files | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
const changedFiles = await github.paginate( | |
github.rest.pulls.listFiles, | |
{ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
pull_number: context.payload.pull_request.number, | |
} | |
); | |
return changedFiles.filter(file=> file.status !== "removed").map(file => file.filename).join(' '); | |
- name: Check pretty (changed files) | |
if: github.event_name == 'pull_request' | |
id: check-pretty | |
run: | | |
CHANGED_FILES=$(echo ${{ steps.get-changed-files.outputs.result }}) | |
if [ -n "$CHANGED_FILES" ]; then | |
pnpm prettier --check $CHANGED_FILES | |
fi | |
- name: Check pretty (all files) | |
if: github.event_name == 'push' | |
run: pnpm prettier --check . | |
ci-be: | |
name: ci-be | |
needs: [pre-ci, prime-cache, check-pretty] | |
runs-on: ubuntu-latest | |
if: needs.pre-ci.outputs.should-build-be == 'true' || needs.pre-ci.outputs.should-build-pkg == 'true' || contains(github.event.pull_request.labels.*.name, 'force-full-ci') | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
sparse-checkout: | | |
backend | |
packages | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: ${{ env.PNPM_VERSION }} | |
- name: Get pnpm store directory | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- name: Cache node modules | |
id: cache-pnpm | |
uses: actions/cache@v4 | |
env: | |
cache-name: node-modules | |
with: | |
path: ${{ env.STORE_PATH }} | |
key: ${{ runner.os }}-${{ env.NODE_VERSION }}-build-${{ env.cache-name }}-${{ hashFiles('pnpm-lock.yaml') }} | |
- name: Install dependencies | |
run: pnpm install | |
- name: Check lint | |
run: npm run lint-be | |
- name: Build | |
run: npm run build-be | |
- name: Test | |
run: npm run test-be | |
ci-fe: | |
name: ci-fe | |
needs: [pre-ci, prime-cache, check-pretty] | |
runs-on: ubuntu-latest | |
if: needs.pre-ci.outputs.should-build-fe == 'true' || needs.pre-ci.outputs.should-build-pkg == 'true' || contains(github.event.pull_request.labels.*.name, 'force-full-ci') | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
sparse-checkout: | | |
frontend | |
packages | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Create stub firebase config | |
working-directory: ./frontend/src/ts/constants | |
run: mv ./firebase-config-example.ts ./firebase-config.ts && cp ./firebase-config.ts ./firebase-config-live.ts | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: ${{ env.PNPM_VERSION }} | |
- name: Get pnpm store directory | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- name: Cache node modules | |
id: cache-pnpm | |
uses: actions/cache@v4 | |
env: | |
cache-name: node-modules | |
with: | |
path: ${{ env.STORE_PATH }} | |
key: ${{ runner.os }}-${{ env.NODE_VERSION }}-build-${{ env.cache-name }}-${{ hashFiles('pnpm-lock.yaml') }} | |
- name: Install dependencies | |
run: pnpm install | |
- name: Check lint | |
run: npm run lint-fe | |
- name: Build | |
run: npm run build-fe | |
- name: Test | |
run: npm run test-fe | |
ci-assets: | |
name: ci-assets | |
needs: [pre-ci, prime-cache, check-pretty] | |
runs-on: ubuntu-latest | |
if: needs.pre-ci.outputs.assets-json == 'true' || contains(github.event.pull_request.labels.*.name, 'force-full-ci') | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
sparse-checkout: | | |
frontend | |
packages | |
- uses: dorny/paths-filter@v3 | |
id: filter | |
with: | |
filters: | | |
language-json: | |
- 'frontend/static/languages/*.json' | |
quotes-json: | |
- 'frontend/static/quotes/*.json' | |
other-json: | |
- 'frontend/static/funbox/*.json' | |
- 'frontend/static/fonts/*.json' | |
- 'frontend/static/themes/*.json' | |
- 'frontend/static/challenges/*.json' | |
- 'frontend/static/layouts/*.json' | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: ${{ env.PNPM_VERSION }} | |
- name: Get pnpm store directory | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- name: Cache node modules | |
id: cache-pnpm | |
uses: actions/cache@v4 | |
env: | |
cache-name: node-modules | |
with: | |
path: ${{ env.STORE_PATH }} | |
key: ${{ runner.os }}-${{ env.NODE_VERSION }}-build-${{ env.cache-name }}-${{ hashFiles('pnpm-lock.yaml') }} | |
- name: Install dependencies | |
run: pnpm install | |
- name: Lint JSON | |
run: npm run pr-check-lint-json | |
- name: Validate languages JSON | |
if: steps.filter.outputs.language-json == 'true' | |
run: npm run pr-check-language-json | |
- name: Validate quotes JSON | |
if: steps.filter.outputs.quotes-json == 'true' | |
run: npm run pr-check-quote-json | |
- name: Validate other JSON | |
if: steps.filter.outputs.other-json == 'true' | |
run: npm run pr-check-other-json | |
ci-pkg: | |
name: ci-pkg | |
needs: [pre-ci, prime-cache,check-pretty] | |
runs-on: ubuntu-latest | |
if: needs.pre-ci.outputs.should-build-pkg == 'true' || contains(github.event.pull_request.labels.*.name, 'force-full-ci') | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
sparse-checkout: | | |
packages | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: ${{ env.PNPM_VERSION }} | |
- name: Get pnpm store directory | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- name: Cache node modules | |
id: cache-pnpm | |
uses: actions/cache@v4 | |
env: | |
cache-name: node-modules | |
with: | |
path: ${{ env.STORE_PATH }} | |
key: ${{ runner.os }}-${{ env.NODE_VERSION }}-build-${{ env.cache-name }}-${{ hashFiles('pnpm-lock.yaml') }} | |
- name: Install dependencies | |
run: pnpm install | |
- name: Check lint | |
run: npm run lint-pkg | |
- name: Build | |
run: npm run build-pkg | |
- name: Test | |
run: npm run test-pkg | |
on-failure: | |
permissions: write-all | |
name: on-failure | |
runs-on: ubuntu-latest | |
needs: [ci-be, ci-fe, ci-assets, ci-pkg] | |
if: ${{ always() && contains(needs.*.result, 'failure') && github.ref != 'refs/heads/master' }} | |
steps: | |
- name: Save the PR number in an artifact | |
shell: bash | |
env: | |
PR_NUM: ${{ github.event.number }} | |
run: echo $PR_NUM > pr_num.txt | |
- name: Upload the PR number | |
uses: actions/upload-artifact@v3 | |
with: | |
name: pr_num | |
path: ./pr_num.txt |