Skip to content

Commit

Permalink
build and link spec text
Browse files Browse the repository at this point in the history
  • Loading branch information
bakkot committed Feb 18, 2023
1 parent 50c54f4 commit 4127717
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 1 deletion.
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build spec

on:
push:
branches:
- main
pull_request:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm ci
- run: npm run build
- run: npm run check-format
23 changes: 23 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Deploy gh-pages

on:
push:
branches:
- main

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm ci
- run: npm run build
- uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: dist
clean: true
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
node_modules
dist

.DS_Store
Desktop.ini
._*
Thumbs.db
.Spotlight-V100
.Trashes
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Champions: Leo Balter

This proposal is at Stage 1 of [The TC39 Process](https://tc39.es/process-document/).

Spec text is available [here](https://tc39.es/proposal-float16array/).

## Motivation

- Explicit request from the Color on the Web CG, for [their use case](https://github.com/w3c/ColorWeb-CG/blob/main/canvas_float.md) with float-backed canvases.
Expand Down
2 changes: 1 addition & 1 deletion spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<div id="metadata-block">
<h1>Contributing to this Proposal</h1>
<p>TODO link to GitHub repo when it is stable</p>
<p>You can discuss this proposal [on GitHub](https://github.com/tc39/proposal-float16array).</p>
</div>

<emu-clause id="sec-proposal-intro">
Expand Down

0 comments on commit 4127717

Please sign in to comment.