Skip to content

Bump typescript from 5.1.6 to 5.3.3 #1701

Bump typescript from 5.1.6 to 5.3.3

Bump typescript from 5.1.6 to 5.3.3 #1701

Workflow file for this run

name: ci
on:
push:
branches:
- main
paths-ignore:
- 'docs/**'
- '*.md'
- '*.pdf'
pull_request:
paths-ignore:
- 'docs/**'
- '*.md'
- '*.pdf'
env:
CI: true
jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
matrix:
node-version: [16.x, 18.x]
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: |
yarn install
- name: Lint
run: |
yarn lint
- name: Build
run: |
yarn build
- name: Run tests
run: |
yarn test