Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name: "Install dependencies"
runs:
using: "composite"
steps:
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: "https://npm.pkg.github.com"
- name: Create .env.test.local file
shell: bash
run: cp .env.test.local.example .env.test.local
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ runs:
steps:
- uses: actions/setup-node@v4
with:
node-version: 18
registry-url: 'https://npm.pkg.github.com'
node-version: 20
registry-url: "https://npm.pkg.github.com"

- name: Create .env.test.local file
shell: bash
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
uses: ./.github/actions/install
- name: Run build
Expand Down Expand Up @@ -174,6 +178,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20

- name: Restore dependencies from cache
uses: ./.github/actions/install

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@charmverse/core",
"version": "0.126.6",
"description": "Core API for Charmverse",
"version": "0.126.7-rc-feat-redeploy-p.2",
"description": "Core package for Charmverse",
"type": "commonjs",
"types": "./dist/cjs/index.d.ts",
"main": "./dist/cjs/index.js",
Expand Down