Allowed enabling mentions without ids, added $enableAllMentions #1313
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: tsc | |
| on: | |
| pull_request: | |
| branches: | |
| - "*" | |
| push: | |
| branches: | |
| - '*' | |
| jobs: | |
| build: | |
| name: Run tsc | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out Git repo | |
| uses: actions/checkout@v3 | |
| with: | |
| node-version: 16.11.0 | |
| - name: Set up node.js | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: '18.x' | |
| - name: Install node.js deps | |
| run: npm i eslint typescript --save-dev | |
| - name: Run tsc | |
| run: npx tsc |