Add anchor resolution + combinator resolution to fix Zowe 3.3 schema error #1239
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: Lint TypeScript | |
| on: | |
| push: | |
| branches: | |
| - v3.x/staging | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: '18' | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Lint TypeScript | |
| run: npm run lint |