app icon shown as page icon too #107
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: Are types and sim in sync? | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 14.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
- name: install typescript | |
run: | | |
npm i -g typescript | |
- name: check if simulator (webxdc.js) and types (webxdc.d.ts) are in sync | |
run: | | |
tsc --noEmit --allowJs --lib es2016,dom webxdc.js |