Skip to content

Bump typescript from 4.9.5 to 5.0.3 #15

Bump typescript from 4.9.5 to 5.0.3

Bump typescript from 4.9.5 to 5.0.3 #15

Workflow file for this run

name: Node.js CI
on:
push:
branches: ['*']
pull_request:
branches: [master]
jobs:
tests:
name: Node.js ${{matrix.node-version}} on ${{matrix.os}}
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
node-version: [14, 16, 18, 19]
exclude:
- os: windows-latest
node-version: 14
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Setup Node.js ${{matrix.node-version}}
uses: actions/setup-node@v3
with:
node-version: ${{matrix.node-version}}
- name: Install the package and run tests
env:
DEVELOPMENT_SKIP_GETTING_ASSET: true
run: |
npm i
npm run build --if-present
npm test && npm run ts-test