Skip to content

Commit 90a93ec

Browse files
committed
ci: update workflows
1 parent cb161d3 commit 90a93ec

2 files changed

Lines changed: 11 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111

1212
jobs:
1313
full-code-check:
14-
runs-on: ubuntu-latest
14+
# runs-on: ubuntu-latest
1515
steps:
1616
- name: Full-check repository
1717
uses: actions/checkout@v4

.github/workflows/docs.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
name: Docs build and deploy
2-
on:
3-
push
4-
# paths: ["src/**"] # Trigger the action only when files change in the folders defined here
2+
on: push
3+
4+
env:
5+
NODE_VERSION: "20"
6+
57
jobs:
68
build-and-deploy:
7-
runs-on: ubuntu-latest
9+
# runs-on: ubuntu-latest
810
steps:
911
- name: Checkout 🛎️
1012
uses: actions/checkout@v4
1113
with:
1214
persist-credentials: false
1315
- name: Install and Build 🔧
16+
uses: actions/setup-node@v4
17+
with:
18+
node-version: ${{ env.NODE_VERSION }}
19+
check-latest: true
1420
run: | # Install packages and build the demo project
1521
yarn install
1622
yarn build-docs

0 commit comments

Comments
 (0)