We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea6d729 commit 072573fCopy full SHA for 072573f
.github/workflows/publish.yaml
@@ -11,21 +11,21 @@ jobs:
11
12
steps:
13
- name: Checkout code
14
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
15
16
- name: Setup Node.js
17
- uses: actions/setup-node@v2
+ uses: actions/setup-node@v3
18
with:
19
- node-version: 20 # Change this to your desired Node.js version
+ node-version: "20.x" # Change this to your desired Node.js version
20
21
- name: Install pnpm
22
run: npm install -g pnpm
23
24
- - name: Build UI
25
- working-directory: ui
26
- run: |
27
- pnpm install
28
- pnpm build
+ # - name: Build UI
+ # working-directory: ui
+ # run: |
+ # pnpm install
+ # pnpm build
29
30
- name: Build API
31
working-directory: api
0 commit comments