This repository was archived by the owner on Sep 16, 2024. It is now read-only.
Bump typescript from 5.4.5 to 5.5.2 #219
Workflow file for this run
This file contains hidden or 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: Tests | |
'on': | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
name: 'Node.js v${{ matrix.node }}' | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: | |
- 16 | |
- 17 | |
steps: | |
- uses: actions/[email protected] | |
with: | |
node-version: '${{ matrix.node }}' | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: npm ci | |
- name: Run All Node.js Tests | |
run: npm test |