Skip to content

Update dependency typescript to v7 #2924

Update dependency typescript to v7

Update dependency typescript to v7 #2924

Workflow file for this run

name: test-javascript
permissions: {}
on:
push:
branches:
- main
- renovate/**
pull_request:
branches:
- main
jobs:
test-javascript:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
node-version: ["22.x", "24.x", "26.x"]
include:
- os: windows-latest
node-version: "22.x"
- os: macos-latest
node-version: "22.x"
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: with Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache-dependency-path: package-lock.json
- run: npm --version
- run: npm install-ci-test
- run: npm run build
- run: npm run lint