Skip to content

Commit

Permalink
feat: update version
Browse files Browse the repository at this point in the history
Jira-issue: https://jira.schibsted.io/browse/UUI-766
Type: feat
ref: UUI-766
  • Loading branch information
hunger-programmer committed Jan 19, 2024
1 parent dd71ef8 commit c647ef2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,13 @@ jobs:
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run tests
run: |
npm run lint
npm run build
npm run docs
npm run test
publish-npm:
Expand All @@ -30,8 +33,11 @@ jobs:
node-version-file: ".nvmrc"
cache: "npm"
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm run build
- run: npm publish --access=public
- name: Install dependencies
run: npm ci
- name: Build application
run: npm run build
- name: Publish to npm
run: npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{secrets.NPMJS_AUTHTOKEN}}
4 changes: 2 additions & 2 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
@@ -1,6 +1,6 @@
{
"name": "@schibsted/account-sdk-browser",
"version": "4.8.6",
"version": "4.8.7",
"description": "Schibsted account SDK for browsers",
"main": "index.js",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/version.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Automatically generated in 'npm version' by scripts/genversion.js

'use strict'
const version = '4.8.6';
const version = '4.8.7';
export default version;

0 comments on commit c647ef2

Please sign in to comment.