Skip to content
Open
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
25 changes: 25 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,31 @@ jobs:
name: npm-logs
path: ~/.npm/_logs

test-types:
name: 'Test Type Declarations'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6

- name: NPM install
uses: actions/setup-node@v6
with:
node-version: latest

- name: Run NPM CI
run: npm ci

- name: Build and Test Type Declarations
run: npm run test:types

- name: Archive npm failure logs
uses: actions/upload-artifact@v6
if: failure()
with:
name: npm-logs
path: ~/.npm/_logs

# Only Core test requires bundle, but we want to make sure
# that tests only run when the bundle is successfully built
test-core:
Expand Down
334 changes: 0 additions & 334 deletions .github/workflows/release.yml

This file was deleted.

Loading
Loading