chore(GithubAction): test run 2 #67
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- feature/v2-build-test | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout current branch (release) | |
uses: actions/checkout@v2 | |
with: | |
ref: feature/v2-build-test | |
- name: Cache node_modules | |
uses: actions/cache@v2 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: | | |
node_modules | |
*/*/node_modules | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Configure Git | |
run: | | |
git config user.name "github-actions[bot]" | |
git config user.email "github-actions[bot]@users.noreply.github.com" | |
- name: Install modules | |
run: npm ci | |
- name: Build icons | |
run: npm run build:icons | |
- name: Lerna version | |
run: lerna version --conventional-commits --no-changelog --no-git-tag-version --no-push --yes | |
- name: Display modified files | |
run: git status --short | |
- name: Display detailed diff | |
run: git diff | |
- name: Run tests | |
run: npm run test | |
- name: Create merge-back PR to main using GitHub API | |
run: | | |
curl -X POST \ | |
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ | |
-H "Content-Type: application/json" \ | |
-d '{"title":"[TEST] Merge-back: release to main","body":"This is an automated PR to merge the release branch into main after version bump and publish.","head":"feature/v2-build-test","base":"main"}' \ | |
https://api.github.com/repos/${{ github.repository }}/pulls |