added https://utfs.io/ to img-src to avoid css errors (#598) #1355
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: | |
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: 20 | |
- name: yarn install | |
run: yarn install | |
- name: tsc | |
uses: icrawl/action-tsc@v1 |