eximiabots-radiox/.github/workflows/typescript-build.yml
dependabot[bot] a7cd768e76
Bump actions/checkout from 2 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-03-02 08:49:31 +00:00

21 lines
364 B
YAML

name: TypeScript Build
on:
push:
workflow_dispatch:
jobs:
tsc:
name: TypeScript Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install node v16
uses: actions/setup-node@v3
with:
node-version: 16
- name: npm install
run: npm install
- name: tsc
uses: icrawl/action-tsc@v1