Skip to content

chore(deps-dev): bump typescript from 5.9.3 to 6.0.3 #2590

chore(deps-dev): bump typescript from 5.9.3 to 6.0.3

chore(deps-dev): bump typescript from 5.9.3 to 6.0.3 #2590

Workflow file for this run

name: Continuous Integration
on: [push]
permissions:
id-token: write
contents: write
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node: [24]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Security audit
run: npm run check:security
- name: Check licenses
run: npm run check:licenses
- name: Build
run: npm run build
- name: Lint
run: npm run lint:ci
- name: Unit test
run: npm run test:ci
- name: Upload code coverage
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Create release PR or publish to npm
if: (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/next' || github.ref == 'refs/heads/canary') && matrix.node == 24
uses: changesets/action@v1
with:
publish: npm run release
env:
GITHUB_TOKEN: ${{ secrets.GH_ACTIONS_PAT }}
NPM_TOKEN: ""