[CLEANUP]: Remove CLI/E2E Tests as we only use the modified client #4
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: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| release: | |
| types: [published] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Check formatting | |
| run: npx prettier --check . | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: package.json | |
| cache: npm | |
| # Working around https://github.com/npm/cli/issues/4828 | |
| # - run: npm ci | |
| - run: npm install --no-package-lock | |
| - name: Check version consistency | |
| run: npm run check-version | |
| - name: Check linting | |
| working-directory: ./client | |
| run: npm run lint | |
| - name: Run client tests | |
| working-directory: ./client | |
| run: npm test | |
| - run: npm run build |