Skip to content

build(deps-dev): bump typescript from 5.2.2 to 6.0.2 in the typescript group #742

build(deps-dev): bump typescript from 5.2.2 to 6.0.2 in the typescript group

build(deps-dev): bump typescript from 5.2.2 to 6.0.2 in the typescript group #742

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: "NodeCI"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-22.04
env:
NODE_OPTIONS: --max-old-space-size=8192
strategy:
matrix:
node: [ 16, 18, 20, 22, 24 ]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
- name: Update rush shrinkwrap dependencies
run: node common/scripts/install-run-rush.js update --full
- name: Npm Install
run: npm install
- run: node common/scripts/install-run-rush.js check
- name: Build
run: npm run build --verbose
timeout-minutes: 15
- name: Unit tests
run: node common/scripts/install-run-rush.js test --verbose
timeout-minutes: 20
- name: Upload Core Coverage
if: matrix.node == 22
uses: codecov/codecov-action@v5
with:
slug: ${{ github.repository }}
files: ./core/coverage/coverage-final.json
token: ${{ secrets.CODECOV_TOKEN }}
flags: core
- name: Upload Chai Shim Coverage
if: matrix.node == 22
uses: codecov/codecov-action@v5
with:
slug: ${{ github.repository }}
files: ./shim/chai/coverage/coverage-final.json
token: ${{ secrets.CODECOV_TOKEN }}
flags: chai_shim