Skip to content

Bump typescript from 5.5.4 to 5.6.2 #227

Bump typescript from 5.5.4 to 5.6.2

Bump typescript from 5.5.4 to 5.6.2 #227

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['18.12.x']
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout repo
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4
with:
node-version: ${{ matrix.node }}
- name: Install deps and build (with cache)
run: |
npm i -g pnpm
pnpm i --frozen-lockfile
- name: Test
run: npm run test --ci --coverage --maxWorkers=2
- name: Build
run: npm run build
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4