Migrate WCF.Conversation.EditorHandler
to typescript
#556
Workflow file for this run
This file contains hidden or 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: JavaScript | |
on: | |
push: | |
branches: | |
- "5.2" | |
- "5.3" | |
- "5.4" | |
- "5.5" | |
- "6.0" | |
- master | |
pull_request: | |
jobs: | |
syntax: | |
name: "Check Syntax" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
- run: echo "::add-matcher::.github/javascript-syntax.json" | |
- name: Remove files to be ignored | |
run: | | |
true | |
- run: | | |
! find . -type f -name '*.js' -exec node -c '{}' \; 2>&1 \ | |
|awk 'BEGIN {m=0} /(.js):[0-9]+$/ {m=1; printf "%s - ",$0} m==1 && /^SyntaxError/ { m=0; print }' \ | |
|sed "s@$(pwd)@.@" \ | |
|grep '^' |