This commit is contained in:
parent
3ec65b9a0f
commit
2a05345589
2 changed files with 26 additions and 4 deletions
22
.github/workflows/lint.yml
vendored
Normal file
22
.github/workflows/lint.yml
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
name: Lint
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: main
|
||||||
|
pull_request:
|
||||||
|
branches: main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
deploy:
|
||||||
|
name: Lint
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
steps:
|
||||||
|
- name: Clone repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Install Deno
|
||||||
|
uses: denoland/setup-deno@v2
|
||||||
|
with:
|
||||||
|
deno-version: v2.x
|
||||||
|
- name: Build step
|
||||||
|
run: "deno lint"
|
||||||
|
|
@ -7,13 +7,13 @@ applications
|
||||||
|
|
||||||
- [x] type-safe routing
|
- [x] type-safe routing
|
||||||
- [x] html streaming support
|
- [x] html streaming support
|
||||||
- [x] jsx runtime
|
- [x] precompiled jsx runtime
|
||||||
- [x] isolated deferred rendering through iframes
|
|
||||||
- [x] safely defer html streams
|
- [x] safely defer html streams
|
||||||
- [x] server-sided token-based sessions
|
- [x] deferred rendering through iframes
|
||||||
|
- [x] tokenized routing-based isolation layer
|
||||||
- [ ] global styles w/ iframe passthrough
|
- [ ] global styles w/ iframe passthrough
|
||||||
- [ ] iframe route lifecycle management
|
- [ ] iframe route lifecycle management
|
||||||
- [ ] proper iframe state management
|
- [ ] proper state management
|
||||||
- [ ] intutive high-level apis
|
- [ ] intutive high-level apis
|
||||||
- [ ] scoped css-in-js library
|
- [ ] scoped css-in-js library
|
||||||
- [ ] interactives structures and dynamic data visibility toggling via modern
|
- [ ] interactives structures and dynamic data visibility toggling via modern
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue