Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Update dependency typescript to v5 #1777

Update dependency typescript to v5

Update dependency typescript to v5 #1777

Workflow file for this run

name: CI Test
on:
push: []
jobs:
build:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
# our developers use linux, osx and might use windows in the future
# so we make sure the build and test pipeline runs on every one
# of them
os: [ubuntu-latest, macos-latest, windows-2016]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
- name: yarn install, build, and test
run: |
yarn install
yarn build
yarn test
env:
CI: true