Skip to content

Commit

Permalink
ci(browser): remove graphql-api checks from browser ci
Browse files Browse the repository at this point in the history
  • Loading branch information
rileyhgrant committed Apr 9, 2024
1 parent 09259ad commit 04236dc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/browser-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run ESLint
run: pnpm eslint .
run: pnpm eslint browser
- name: Run stylelint
run: pnpm stylelint './**/*.(js|jsx|ts|tsx)'
run: pnpm stylelint 'browser/**/*.(js|jsx|ts|tsx)'
- name: Type check
run: pnpm ts-node ./browser/build/buildHelp.ts && pnpm typecheck
run: pnpm ts-node ./browser/build/buildHelp.ts && cd browser && pnpm tsc --noEmit --project ../tsconfig.json
- name: Verify clean build
run: cd browser && pnpm build
- name: Run Jest tests
run: pnpm jest
run: pnpm jest --selectProjects browser
2 changes: 1 addition & 1 deletion .github/workflows/graphql-api-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ jobs:
- name: Run ESLint
run: pnpm eslint graphql-api
- name: Type check
run: pnpm ts-node ./browser/build/buildHelp.ts && pnpm typecheck
run: pnpm ts-node ./browser/build/buildHelp.ts && cd graphql-api && pnpm tsc --noEmit --project ../tsconfig.json
- name: Run tests
run: pnpm jest --selectProjects graphql-api

0 comments on commit 04236dc

Please sign in to comment.