add CLI command to resync tickets only (there was no path previously … #4051
Workflow file for this run
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: Lint & Build (types) | |
on: | |
push: | |
paths: | |
- types/** | |
- .github/workflows/build-and-lint-types.yml | |
jobs: | |
check-eslint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20.13.0 | |
cache: "npm" | |
cache-dependency-path: ./types/package-lock.json | |
- working-directory: types | |
run: npm install && npm run lint && npm run build | |