Skip to content

Commit

Permalink
Merge branch 'master' into js/docs-dark-mode
Browse files Browse the repository at this point in the history
  • Loading branch information
jscheiny committed May 17, 2024
2 parents 8ea444c + b9a6617 commit 466f646
Show file tree
Hide file tree
Showing 61 changed files with 4,418 additions and 4,208 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x, 22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install
- name: Verify
run: yarn verify
49 changes: 49 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Deploy docs to Pages

on:
push:
branches:
- $default-branch

workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "22"
- name: Install dependencies
run: yarn install
- name: Build
run: yarn docs
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./docs/build

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ yarn-error.log
### Editors
.vscode/

### Generated code
generated/
*.js
*.js.map
*.d.ts
61 changes: 0 additions & 61 deletions codegen/common.ts

This file was deleted.

75 changes: 0 additions & 75 deletions codegen/emit.ts

This file was deleted.

14 changes: 0 additions & 14 deletions codegen/genExponent.ts

This file was deleted.

38 changes: 0 additions & 38 deletions codegen/genTests.ts

This file was deleted.

69 changes: 0 additions & 69 deletions codegen/genTypes.ts

This file was deleted.

41 changes: 0 additions & 41 deletions codegen/spec.ts

This file was deleted.

6 changes: 0 additions & 6 deletions codegen/tsconfig.json

This file was deleted.

Loading

0 comments on commit 466f646

Please sign in to comment.