Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,15 @@ jobs:
- name: Generate types
working-directory: ./typescript
run: npm run generate-types

- name: Run tests
working-directory: ./typescript
run: npm test

- name: Build
working-directory: ./typescript
run: npm run build

- name: Run tests
working-directory: ./typescript
run: npm test

- name: Check linting
working-directory: ./typescript
run: npm run lint
7 changes: 4 additions & 3 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,16 @@ jobs:
working-directory: ./typescript
run: npm ci

- name: Run tests
working-directory: ./typescript
run: npm test

- name: Generate types and build package
working-directory: ./typescript
run: |
npm run generate-types
npm run build

- name: Run tests
working-directory: ./typescript
run: npm test

- name: Prepare package for publishing
working-directory: ./typescript
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,16 +97,15 @@ jobs:
- name: Install dependencies
working-directory: ./typescript
run: npm ci

- name: Run tests
working-directory: ./typescript
run: npm test
- name: Generate types and build package
working-directory: ./typescript
run: |
npm run generate-types
npm run build

- name: Run tests
working-directory: ./typescript
run: npm test

- name: Publish package to NPM
working-directory: ./typescript
Expand Down
13 changes: 0 additions & 13 deletions typescript/jest.config.js

This file was deleted.

Loading
Loading