diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..c9ee0b4 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @Ringier-Axel-Springer-PL/namespace-all-ring-ui diff --git a/.github/workflows/ci-cd.yaml b/.github/workflows/ci-cd.yaml new file mode 100644 index 0000000..4fa381f --- /dev/null +++ b/.github/workflows/ci-cd.yaml @@ -0,0 +1,31 @@ +name: Node Library Build and Deployment +on: + push: + branches: + - master + pull_request: + branches: + - "**" + workflow_dispatch: + inputs: + is-force-build: + default: false + description: Force full build. + required: true + type: boolean +concurrency: + cancel-in-progress: true + group: ${{ github.workflow }}-${{ github.ref }} +jobs: + ci-cd: + name: CI/CD + uses: ringier-axel-springer-pl/sdk-workflow-node-library/.github/workflows/shared.yaml@v1 + secrets: + npm-token: ${{ secrets.NPM_TOKEN }} + with: + # Possible workflow parameters: https://github.com/ringier-axel-springer-pl/sdk-workflow-node-library + is-force-build: ${{ inputs.is-force-build || false }} + test-js-framework: jest + test-js-enabled: true + node-version: "20" + npm-registry: npmjs diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f0d6b4..259f3de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/), and this project adheres to [Semantic Versioning](https://semver.org/). -## [1.1.0] - 2024-01-02 + +## [1.2.0] - 2025-01-17 + +### Added + +- [@jpalis]: Added github actions set up. + + +## [1.1.0] - 2025-01-02 ### Added diff --git a/package.json b/package.json index 8096934..8b54dd2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ringpublishing/mui-theme", - "version": "1.1.0", + "version": "1.2.0", "description": "Ring Mui Theme", "license": "LGPL-3.0-or-later", "repository": {},