Merge pull request 'Add type checking' (#7) from type-check into master

Reviewed-on: billnerds/rn-playground#7
This commit is contained in:
Kat Huang 2024-01-06 18:06:53 -07:00
commit c292289f29

View File

@ -19,3 +19,5 @@ jobs:
run: nix develop --impure --command bash -c 'export HOME=$PWD; yarn config set link-folder . && yarn install' run: nix develop --impure --command bash -c 'export HOME=$PWD; yarn config set link-folder . && yarn install'
- name: lint - name: lint
run: nix develop --impure --command bash -c 'export HOME=$PWD; yarn run lint' run: nix develop --impure --command bash -c 'export HOME=$PWD; yarn run lint'
- name: typecheck
run: nix develop --impure --command bash -c 'export HOME=$PWD; yarn tsc --noEmit'