Compare commits

...

31 Commits

Author SHA1 Message Date
mashal-m
b5dffad10d fix: add push and pr command 2023-02-27 16:34:22 +05:00
mashal-m
72f90f49c1 fix: add build job 2023-02-27 16:30:27 +05:00
mashal-m
08cf5fb3d5 fix: add build job 2023-02-27 16:28:10 +05:00
mashal-m
3b5a2e920f fix: add build job 2023-02-27 16:26:26 +05:00
mashal-m
018aea6a34 fix: add build job 2023-02-27 16:24:00 +05:00
mashal-m
e8e7ca8948 fix: fix yml issue 2023-02-27 14:59:27 +05:00
mashal-m
b1546638c4 fix: fix yml issue 2023-02-27 14:56:05 +05:00
mashal-m
cfb08bc933 fix: specify on push 2023-02-27 14:53:17 +05:00
mashal-m
e66a99769d fix: add pull req 2023-02-27 14:25:55 +05:00
mashal-m
2a2713be63 fix: remove pull req 2023-02-27 14:24:39 +05:00
mashal-m
5900d84b9f fix: add semantic release in test job 2023-02-27 13:50:54 +05:00
mashal-m
3c168919cf fix: add semantic release in test job 2023-02-26 00:30:50 +05:00
mashal-m
5ac0035fe4 fix: run next version flow 2023-02-25 20:30:53 +05:00
mashal-m
109643fd76 feat: add semantic release 2023-02-25 00:35:41 +05:00
mashal-m
69a4580b71 feat: add semantic release 2023-02-25 00:34:25 +05:00
mashal-m
96373856ff refactor: add name of flow 2023-02-25 00:22:32 +05:00
mashal-m
5357b87c7c refactor: add name of flow 2023-02-24 23:34:40 +05:00
mashal-m
4940a0145f refactor: add name of flow 2023-02-24 23:25:52 +05:00
mashal-m
45c749286e refactor: only new package config 2023-02-24 23:16:44 +05:00
mashal-m
d52c9c81a1 refactor: add node support 2023-02-24 22:56:36 +05:00
mashal-m
cb7d13edb1 refactor: add node support 2023-02-24 22:50:37 +05:00
mashal-m
2e188af447 refactor: add semantic release 2023-02-24 17:21:25 +05:00
mashal-m
e2c6f72004 refactor: add semantic release pkg 2023-02-24 17:19:02 +05:00
renovate[bot]
b02fe00c71 fix(deps): update dependency @edx/paragon to v20.28.4 2023-02-20 11:19:51 +00:00
renovate[bot]
4404aede33 chore(deps): update dependency jest to v29.4.3 2023-02-20 11:12:57 +00:00
renovate[bot]
1b0edb10c4 chore(deps): update dependency @testing-library/dom to v8.20.0 2023-02-13 12:12:41 +00:00
renovate[bot]
546adff45e chore(deps): update dependency @edx/brand to v1.2.0 2023-02-13 12:05:28 +00:00
renovate[bot]
94b14fd618 chore(deps): update dependency redux-saga to v1.2.2 2023-02-06 13:51:48 +00:00
renovate[bot]
5b8a9a587b chore(deps): update dependency redux to v4.2.1 2023-02-06 13:44:55 +00:00
renovate[bot]
2650cb59b3 chore(deps): update actions/setup-node action to v3 (#212)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-06 15:11:28 +05:00
renovate[bot]
bc2b13175a chore(deps): update dependency husky to v8 (#235)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-06 14:30:50 +05:00
5 changed files with 11156 additions and 1469 deletions

View File

@@ -7,6 +7,40 @@ on:
branches:
- '**'
jobs:
get-next-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- run: npx semantic-release --dry-run
id: get-next-version
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
outputs:
new-release-published: ${{ steps.get-next-version.outputs.new-release-published }}
new-release-version: ${{ steps.get-next-version.outputs.new-release-version }}
build:
runs-on: ubuntu-latest
needs: get-next-version
if: needs.get-next-version.outputs.new-release-published == 'true'
steps:
- uses: actions/checkout@v3
- run: echo "The new release version is ${{ needs.get-next-version.outputs.new-release-version }}"
release:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm ci
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
tests:
runs-on: ubuntu-latest
strategy:
@@ -18,7 +52,7 @@ jobs:
with:
fetch-depth: 0
- name: Setup Nodejs
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies

View File

@@ -13,7 +13,7 @@ jobs:
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies

View File

@@ -1,6 +1,7 @@
{
"branch": "master",
"tagFormat": "v${version}",
"plugins": ["semantic-release-export-data"],
"verifyConditions": [
"@semantic-release/npm",
{

12571
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -33,17 +33,17 @@
},
"homepage": "https://github.com/openedx/frontend-component-header#readme",
"devDependencies": {
"@edx/brand": "npm:@edx/brand-openedx@1.1.0",
"@edx/brand": "npm:@edx/brand-openedx@1.2.0",
"@edx/browserslist-config": "^1.1.1",
"@edx/frontend-build": "^12.4.19",
"@edx/frontend-platform": "^3.0.1",
"@testing-library/dom": "8.19.1",
"@testing-library/dom": "8.20.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "10.4.9",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.7",
"husky": "7.0.4",
"jest": "29.3.1",
"husky": "8.0.3",
"jest": "29.4.3",
"jest-chain": "1.1.6",
"prop-types": "15.8.1",
"react": "16.14.0",
@@ -52,11 +52,12 @@
"react-router-dom": "5.3.4",
"react-test-renderer": "16.14.0",
"reactifex": "1.1.1",
"redux": "4.2.0",
"redux-saga": "1.2.1"
"redux": "4.2.1",
"redux-saga": "1.2.2",
"semantic-release-export-data": "^1.0.1"
},
"dependencies": {
"@edx/paragon": "20.27.0",
"@edx/paragon": "20.28.4",
"@fortawesome/fontawesome-svg-core": "6.2.1",
"@fortawesome/free-brands-svg-icons": "6.2.1",
"@fortawesome/free-regular-svg-icons": "6.2.1",