File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111
1212jobs :
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
Original file line number Diff line number Diff line change 11name : 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+
57jobs :
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
You can’t perform that action at this time.
0 commit comments