This repository was archived by the owner on Aug 25, 2025. It is now read-only.
fix(deps): bump typescript from 5.8.3 to 5.9.2 #301
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
name: Test | |
on: [pull_request] | |
permissions: read-all | |
concurrency: | |
group: ${{ github.ref_name }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Install node | |
uses: actions/setup-node@v4.0.2 | |
with: | |
node-version: 22.x | |
- name: Install dependencies | |
run: npm ci | |
- name: Run test UMD compile | |
run: npm run vite:dist | |
- name: Run test package compile | |
run: npm run swc:sim:pack | |
- name: Run unit tests | |
run: npm run test |