publish new versions (#348) #1625
Workflow file for this run
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 | |
| on: push | |
| jobs: | |
| run-linters: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: volta-cli/action@v4 | |
| - name: Install Node.js dependencies | |
| run: npm ci | |
| - name: Run linters | |
| run: npm run lint | |
| # note this is required for type checking | |
| # in part due to graphql codegen | |
| - name: Build All | |
| run: npm run prepack | |
| - name: Run tsc | |
| run: npm run tsc |