Skip to content

CI

CI #1076

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
schedule:
- cron: "00 20 * * *"
jobs:
checks:
name: 'Script Check'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: npm install
run: |
pwd && npm install
find ./scripts/* -maxdepth 2 -name package.json -execdir sh -c 'pwd && npm install' \;
find ./docs/* -maxdepth 5 -name package.json -execdir sh -c 'pwd && npm install' \;
- name: Type Check
run: |
tsc --build --verbose
cp -r dist/* .
- name: Format Check
run: node ./dist/tools/index.js
env:
event_name: ${{ github.event_name }}
- name: Create Pull Request
if: ${{ github.event_name == 'schedule' }}
id: cpr
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.JAYLYBOT_TOKEN }}
push-to-fork: jayly-bot/ScriptAPI
commit-message: Upload generated files
title: Upload generated files for scripts
body: Transpiled TypeScript files and created README files, please review.
branch: scripts/update
base: main
author: jayly-bot <121162959+jayly-bot@users.noreply.github.com>
- name: Check outputs
if: ${{ steps.cpr.outputs.pull-request-number }}
run: |
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}"
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}"
gh pr edit ${{ steps.cpr.outputs.pull-request-number }} --add-label "scripts"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PULL_REQUEST: ${{ steps.cpr.outputs.pull-request-url }}