Skip to content

[CLEANUP]: Remove CLI/E2E Tests as we only use the modified client #4

[CLEANUP]: Remove CLI/E2E Tests as we only use the modified client

[CLEANUP]: Remove CLI/E2E Tests as we only use the modified client #4

Workflow file for this run

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