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 f18b622 commit 4c2fabcCopy full SHA for 4c2fabc
‎.github/workflows/publish.yml
@@ -6,20 +6,19 @@ jobs:
6
steps:
7
- uses: actions/checkout@v3
8
9
- - name: Set Node Version to 18
+ - name: Set Node Version to 22
10
uses: actions/setup-node@v2
11
with:
12
- node-version: '18'
+ node-version: '22'
13
+
14
+ - name: Enable Corepack
15
+ run: corepack enable
16
17
- name: Install Dependencies
- uses: borales/actions-yarn@v4
- with:
- cmd: install
18
+ run: yarn install
19
- - name: Build Production Bundle
20
21
22
- cmd: build
+ - name: Build
+ run: yarn build
23
24
- name: Push to Build Branch
25
if: github.ref == 'refs/heads/main'
0 commit comments