Automate Generation of d.ts for Ace Editor Modes #2
Workflow file for this run
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
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: CI | |
on: | |
pull_request: | |
branches: [ master ] | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
update-docs: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Checkout PR | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: gh pr checkout ${{ github.event.pull_request.number }} | |
- name: Fetch the master branch | |
run: git fetch origin HEAD:refs/remotes/origin/HEAD --depth 1 | |
- name: Fetch the master branch | |
run: git diff --name-only origin/HEAD --no-renames --diff-filter=ACMR | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm i | |
# run linter | |
- run: | | |
set -x; | |
git status; | |
git checkout HEAD -- package.json; | |
changes=$(git diff --name-only origin/HEAD --no-renames --diff-filter=ACMR); | |
if [ "$changes" == "" ]; then | |
echo "checking all files"; | |
node node_modules/eslint/bin/eslint --fix "lib/ace/**/*.js"; | |
else | |
jsChanges=$(echo "$changes" | grep -P '.js$' || :); | |
if [ "$jsChanges" == "" ]; then | |
echo "nothing to check"; | |
else | |
echo "checking $jsChanges"; | |
node node_modules/eslint/bin/eslint --fix $jsChanges; | |
fi | |
fi | |
# check types | |
- run: npm run update-types | |
- run: node_modules/.bin/tsc --noImplicitAny --strict --noUnusedLocals --noImplicitReturns --noUnusedParameters --noImplicitThis ace.d.ts | |
- run: npm run typecheck | |
# push automatic fixes to the pull request | |
- run: | | |
set -x; | |
git status; | |
git add -u | |
git reset -- build | |
git config user.name "Ace Ci Bot" | |
git config user.email "bot@c9.io" | |
git commit -m "ci fixes" --author="Ace Ci Bot <bot@c9.io>" | |
git branch -f CI_FIXES | |
git remote -v | |
git log --all --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit -- | |
- run: git push |