This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
Update package versions #4
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: TypeScript | |
on: | |
push: | |
jobs: | |
typescript: | |
name: TypeScript | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
- name: Install dependencies | |
run: npm install | |
- name: Build packages | |
run: npm run build | |
- name: Run TypeScript | |
run: npm run typescript |