Skip to content

Commit

Permalink
try newer version of CI runners
Browse files Browse the repository at this point in the history
  • Loading branch information
lihebi committed Oct 31, 2023
1 parent ea6d729 commit 072573f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 20 # Change this to your desired Node.js version
node-version: "20.x" # Change this to your desired Node.js version

- name: Install pnpm
run: npm install -g pnpm

- name: Build UI
working-directory: ui
run: |
pnpm install
pnpm build
# - name: Build UI
# working-directory: ui
# run: |
# pnpm install
# pnpm build

- name: Build API
working-directory: api
Expand Down

0 comments on commit 072573f

Please sign in to comment.