This repository has been archived by the owner on Sep 27, 2024. It is now read-only.
Update dependency typescript to v5 #1777
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |