Compare commits

...

9 Commits

Author SHA1 Message Date
mashal-m
acd118a467 refactor: update ci file 2023-05-26 16:38:53 +05:00
mashal-m
ee92f5e63a refactor: update ci file 2023-05-26 16:31:12 +05:00
mashal-m
725fcb1b68 refactor: update ci file 2023-05-26 16:15:05 +05:00
mashal-m
eca0c852c9 refactor: update ci file 2023-05-26 16:09:11 +05:00
mashal-m
e3c77460eb refactor: update ci file 2023-05-26 16:04:36 +05:00
mashal-m
0c536b30dd refactor: update ci file 2023-05-26 15:55:41 +05:00
mashal-m
f828ce6461 refactor: update releaserc file 2023-05-25 17:55:22 +05:00
mashal-m
d96b54ec71 refactor: update releaserc file 2023-05-25 17:38:57 +05:00
mashal-m
270f416011 feat: config semantic release work around 2023-05-24 18:46:26 +05:00
3 changed files with 66 additions and 29 deletions

View File

@@ -1,36 +1,55 @@
name: Default CI
on:
push:
branches:
- master
- master
pull_request:
branches:
- '**'
- '**'
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Nodejs Env
run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV
- name: Setup Nodejs
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VER }}
- name: Install dependencies
run: npm ci
- name: Validate package-lock.json changes
run: make validate-no-uncommitted-package-lock-changes
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build
run: npm run build
- name: i18n_extract
run: npm run i18n_extract
- name: Coverage
uses: codecov/codecov-action@v3
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Nodejs Env
run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV
- name: Setup Nodejs
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VER }}
- name: Install dependencies
run: npm ci
- name: Validate package-lock.json changes
run: make validate-no-uncommitted-package-lock-changes
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build
run: npm run build
- name: i18n_extract
run: npm run i18n_extract
- name: Coverage
uses: codecov/codecov-action@v3
- name: prep plugins
run: npm install -D @semantic-release/changelog @semantic-release/git @semantic-release/exec
- name: Run semantic release
env:
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.SEMANTIC_RELEASE_NPM_TOKEN }}
run: npx semantic-release
id: ver
outputs:
output1: ${{ steps.ver.outputs.nextVer }}
print:
needs: tests
runs-on: ubuntu-20.04
steps:
- name: Print version
run: echo ${{ needs.tests.outputs.output1 }}

View File

@@ -39,3 +39,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.SEMANTIC_RELEASE_NPM_TOKEN }}

View File

@@ -1,5 +1,22 @@
{
"branch": "master",
"branches": [
"mashal-m/semantic-release-workaround",
"master",
{
"name": "beta",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
["@semantic-release/exec",
{
"publishCmd": "echo ::set-output name=nextVer::${nextRelease.version}"
}
]
],
"tagFormat": "v${version}",
"verifyConditions": [
"@semantic-release/npm",
@@ -20,8 +37,8 @@
"assets": {
"path": "dist/*"
}
}
}
],
"success": [],
"fail": []
}
}