Skip to content

Fikser ting

Fikser ting #1125

Workflow file for this run

name: TypeScript
on:
push:
paths:
- '**.ts'
- '**.tsx'
jobs:
tsc:
name: tsc
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: install node v12
uses: actions/setup-node@v1
with:
node-version: 16
- name: yarn install
run: yarn install
- name: tsc
uses: icrawl/action-tsc@v1