feat: Sync Core (#639) #1457
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 Source Code | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| schedule: | |
| - cron: '17 14 * * 1-5' # Run M-F at 2:17pm UTC (7:17am MST / 8:17am MDT) | |
| workflow_dispatch: | |
| jobs: | |
| runLinter: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 | |
| with: | |
| package-manager-cache: false | |
| - run: npm i | |
| - run: npm run lint:required |