Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 17 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,19 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install Dependencies
- name: Enable Corepack
run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Yarn Install
uses: nick-invision/retry@v2
with:
timeout_minutes: 5
retry_wait_seconds: 60
max_attempts: 3
command: yarn install --immutable
- name: Install spellchecker-cli
uses: nick-invision/retry@v2
with:
timeout_minutes: 10
Expand All @@ -35,13 +47,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 22
cache: yarn

- name: Install dependencies
run: yarn install --frozen-lockfile && cd website && yarn install --frozen-lockfile
run: yarn install --immutable && cd website && YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install
- name: Build website
run: cd website && yarn build

Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Enable Corepack
run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 22
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
Expand All @@ -40,7 +42,7 @@ jobs:
timeout_minutes: 3
retry_wait_seconds: 30
max_attempts: 3
command: yarn --no-audit --prefer-offline
command: yarn install --immutable
- name: Lint
run: yarn lint:code
- name: Save Code Linting Report JSON
Expand Down Expand Up @@ -69,9 +71,11 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Enable Corepack
run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 22
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
Expand All @@ -89,6 +93,6 @@ jobs:
timeout_minutes: 3
retry_wait_seconds: 30
max_attempts: 3
command: yarn --no-audit --prefer-offline
command: yarn install --immutable
- name: Lint
run: yarn tsc:compile
6 changes: 4 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,18 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Enable Corepack
run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 22
- name: Yarn Install
uses: nick-invision/retry@v1
with:
timeout_minutes: 10
retry_wait_seconds: 60
max_attempts: 3
command: yarn --no-audit --prefer-offline
command: yarn install --immutable
- name: Git Config
run: |
git config --global user.email "wj118797@gmail.com"
Expand Down
198 changes: 0 additions & 198 deletions .github/workflows/tests_e2e_android.yml

This file was deleted.

Loading
Loading