Skip to content

Commit

Permalink
Update SDK to latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
marcospassos committed Dec 5, 2024
1 parent 1bafbcd commit 6838bf4
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 5 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/publish-pr-preview.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: PR preview

on:
pull_request:
types:
- synchronize
- opened

env:
BASE_ENDPOINT: https://api.croct.io
MAX_QUERY_LENGTH: 500

jobs:
preview:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20

- name: Cache dependencies
id: cache-dependencies
uses: actions/cache@v4
with:
path: node_modules
key: node_modules-${{ hashFiles('**/package-lock.json') }}

- name: Install dependencies
if: steps.cache-dependencies.outputs.cache-hit != 'true'
run: npm ci

- name: Build package
run: npm run build

- name: Prepare release
run: |-
cp package.json LICENSE README.md build/
cd build
find . -type f -path '*/*\.js.map' -exec sed -i -e "s~../src~src~" {} +
sed -i -e "s~<@version@>~0.0.0-dev~" constants.*
sed -i -e "s~<@baseEndpointUrl@>~${BASE_ENDPOINT}~" constants.*
sed -i -e "s~parseInt('<@maxQueryLength@>', 10)~${MAX_QUERY_LENGTH}~" constants.*
cp -r ../src src
- name: Publish preview
run: |-
npx pkg-pr-new publish \
--compact --comment=update \
./build
9 changes: 5 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
},
"dependencies": {
"@croct/json": "^2.1.0",
"@croct/sdk": "^0.17.6",
"@croct/sdk": "^0.17.7",
"tslib": "^2.7.0"
},
"devDependencies": {
Expand Down

0 comments on commit 6838bf4

Please sign in to comment.