Compare commits
23 Commits
v4.10.2
...
mashal-m/s
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b5dffad10d | ||
|
|
72f90f49c1 | ||
|
|
08cf5fb3d5 | ||
|
|
3b5a2e920f | ||
|
|
018aea6a34 | ||
|
|
e8e7ca8948 | ||
|
|
b1546638c4 | ||
|
|
cfb08bc933 | ||
|
|
e66a99769d | ||
|
|
2a2713be63 | ||
|
|
5900d84b9f | ||
|
|
3c168919cf | ||
|
|
5ac0035fe4 | ||
|
|
109643fd76 | ||
|
|
69a4580b71 | ||
|
|
96373856ff | ||
|
|
5357b87c7c | ||
|
|
4940a0145f | ||
|
|
45c749286e | ||
|
|
d52c9c81a1 | ||
|
|
cb7d13edb1 | ||
|
|
2e188af447 | ||
|
|
e2c6f72004 |
34
.github/workflows/ci.yml
vendored
34
.github/workflows/ci.yml
vendored
@@ -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:
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"branch": "master",
|
||||
"tagFormat": "v${version}",
|
||||
"plugins": ["semantic-release-export-data"],
|
||||
"verifyConditions": [
|
||||
"@semantic-release/npm",
|
||||
{
|
||||
|
||||
9633
package-lock.json
generated
9633
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -53,7 +53,8 @@
|
||||
"react-test-renderer": "16.14.0",
|
||||
"reactifex": "1.1.1",
|
||||
"redux": "4.2.1",
|
||||
"redux-saga": "1.2.2"
|
||||
"redux-saga": "1.2.2",
|
||||
"semantic-release-export-data": "^1.0.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"@edx/paragon": "20.28.4",
|
||||
|
||||
Reference in New Issue
Block a user