Skip to content

Commit

Permalink
Ported core packages and examples to Typecript
Browse files Browse the repository at this point in the history
  • Loading branch information
meta-paul committed Dec 6, 2024
1 parent caf8021 commit eaf05cc
Show file tree
Hide file tree
Showing 174 changed files with 9,322 additions and 7,281 deletions.
19 changes: 18 additions & 1 deletion .github/workflows/annotated-pkgs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,28 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"

- uses: actions/cache@v3
id: yarn-cache
env:
cache-name: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-${{ env.cache-name }}-
${{ runner.os }}-yarn-
${{ runner.os }}-
- uses: actions/setup-node@v4
env:
FORCE_COLOR: 0
with:
node-version: 16
node-version: 20.18.1

- name: Install yarn 3
run: npm i -g yarn
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/cypress-end-to-end-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ jobs:
continue-on-error: true
- uses: actions/setup-node@v4
with:
cache: "yarn"
node-version: 16
cache: yarn
node-version: 20.18.1
- uses: dorny/paths-filter@v3
id: filter
with:
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
# - name: 🪨 Setup Node
# uses: actions/setup-node@v4
# with:
# node-version: 16.16.0
# node-version: 20.18.1
#
# - name: 🤖 Install Mephisto
# run: pip install -e .
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
# - name: 🪨 Setup Node
# uses: actions/setup-node@v4
# with:
# node-version: 16.16.0
# node-version: 20.18.1
#
# - name: 🤖 Install Mephisto
# run: pip install -e .
Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:
- name: 🪨 Setup Node
uses: actions/setup-node@v4
with:
node-version: 16.16.0
node-version: 20.18.1

- name: 🤖 Install Mephisto
run: pip install -e .
Expand Down Expand Up @@ -248,7 +248,7 @@ jobs:
- name: 🪨 Setup Node
uses: actions/setup-node@v4
with:
node-version: 16.16.0
node-version: 20.18.1

- name: 🤖 Install Mephisto
run: pip install -e .
Expand Down Expand Up @@ -298,7 +298,7 @@ jobs:
- name: 🪨 Setup Node
uses: actions/setup-node@v4
with:
node-version: 16.16.0
node-version: 20.18.1

- name: 🤖 Install Mephisto
run: pip install -e .
Expand Down Expand Up @@ -348,7 +348,7 @@ jobs:
# - name: 🪨 Setup Node
# uses: actions/setup-node@v4
# with:
# node-version: 16.16.0
# node-version: 20.18.1
#
# - name: 🤖 Install Mephisto
# run: pip install -e .
Expand Down Expand Up @@ -401,7 +401,7 @@ jobs:
- name: 🪨 Setup Node
uses: actions/setup-node@v4
with:
node-version: 16.16.0
node-version: 20.18.1

- name: 🤖 Install Mephisto
run: |
Expand Down Expand Up @@ -452,7 +452,7 @@ jobs:
- name: 🪨 Setup Node
uses: actions/setup-node@v4
with:
node-version: 16.16.0
node-version: 20.18.1

- name: 🤖 Install Mephisto
run: |
Expand Down Expand Up @@ -503,7 +503,7 @@ jobs:
- name: 🪨 Setup Node
uses: actions/setup-node@v4
with:
node-version: 16.16.0
node-version: 20.18.1

- name: 🤖 Install Mephisto
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
env:
FORCE_COLOR: 0
with:
node-version: 16.16.0
cache: yarn
node-version: 20.18.1
- uses: actions/setup-python@v5
with:
python-version: 3.8
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v4
with:
node-version: 16.16.0
cache: yarn
node-version: 20.18.1
- uses: actions/setup-python@v5
with:
python-version: 3.8
Expand Down
2 changes: 2 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ initFields:

initScope: annotated

nodeLinker: node-modules

packageExtensions:
"@docusaurus/core@*":
dependencies:
Expand Down
Loading

0 comments on commit eaf05cc

Please sign in to comment.