its accessToken not authToken #1390
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
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| - dev | |
| push: | |
| branches: | |
| - master | |
| - dev | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| name: Run Linter | |
| steps: | |
| - name: Checkout step | |
| id: checkout | |
| uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: ">=18" | |
| - name: install | |
| run: yarn | |
| - name: Run JS linter | |
| run: yarn lint | |
| - name: build | |
| run: yarn build |