Skip to content

Commit

Permalink
Merge branch 'refs/heads/master' into development
Browse files Browse the repository at this point in the history
# Conflicts:
#	package.json
#	pnpm-lock.yaml
  • Loading branch information
pavankjadda committed May 8, 2024
2 parents 3f5313d + 38cc933 commit 90dbcea
Show file tree
Hide file tree
Showing 8 changed files with 20,770 additions and 13,277 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v4
with:
version: latest
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
- name: Install Dependencies
run: pnpm install --frozen-lockfile
run: npm i
- name: Run Tests
run: pnpm test react-cookie-service
run: npm run test react-cookie-service
- name: Build project
run: pnpm run build react-cookie-service
run: npm run build react-cookie-service
13 changes: 5 additions & 8 deletions .github/workflows/npm_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v4
with:
version: latest
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
- name: Install Dependencies
run: pnpm install --frozen-lockfile
run: npm i
- name: Build project
run: pnpm build react-cookie-service
run: npm run build react-cookie-service
- name: Run Tests
run: pnpm test react-cookie-service
run: npm run test react-cookie-service
- name: Publish to NPM
uses: JS-DevTools/npm-publish@v3
with:
Expand Down
13 changes: 5 additions & 8 deletions .github/workflows/npm_publish_js_cookie_service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v4
with:
version: latest
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
- name: Install Dependencies
run: pnpm install --frozen-lockfile
run: npm i
- name: Build project
run: pnpm build js-cookie-service
run: npm run build js-cookie-service
- name: Run Tests
run: pnpm test js-cookie-service
run: npm run test js-cookie-service
- name: Publish to NPM
uses: JS-DevTools/npm-publish@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion libs/js-cookie-service/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@js-smart/js-cookie-service",
"version": "2.5.0",
"version": "2.6.0",
"private": false,
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion libs/react-cookie-service/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@js-smart/react-cookie-service",
"version": "2.5.0",
"version": "2.6.0",
"private": false,
"repository": {
"type": "git",
Expand Down
Loading

0 comments on commit 90dbcea

Please sign in to comment.