fix: remove export link column from export logs #4718
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
name: TypeScript Lint Check | |
on: | |
pull_request: | |
types: [assigned, opened, synchronize, reopened] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: TypeScript Lint GitHub Action | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 22.2.0 | |
- name: Install dependencies | |
run: npm install | |
- name: Lint | |
run: npm run lint |