mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-09 23:40:18 +00:00
Added TypeScript Build (Github Workflow)
This commit is contained in:
parent
7dc0a6d3b9
commit
64f97b990a
22
.github/workflows/typescript-build.yml
vendored
Normal file
22
.github/workflows/typescript-build.yml
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
name: TypeScript Build
|
||||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
tsc:
|
||||
name: tsc
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: install node v16
|
||||
uses: actions/setup-node@v2.3.1
|
||||
with:
|
||||
node-version: 16
|
||||
- name: npm install -g npm
|
||||
run: npm install -g npm
|
||||
- name: npm install
|
||||
run: npm install
|
||||
- name: tsc
|
||||
uses: icrawl/action-tsc@v1
|
Loading…
Reference in New Issue
Block a user