Skip to content

Fix tsc GH action

Fix tsc GH action #6

Workflow file for this run

on:
push:
paths:
- '**.js?(x)'
- '**.ts?(x)'
jobs:
lint:
runs-on: ubuntu-latest
name: Run eslint
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '16.x'
- run: npm i
- run: npm run ci
tsc:
runs-on: ubuntu-latest
name: Check typescript
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '16.x'
- run: npm i
- run: npm run tsc