Add message list submodule #6
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: CI | |
on: | |
push: | |
branches: [ "main", "v5" ] | |
pull_request: | |
branches: [ "main", "v5" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
CI: true | |
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | |
USE_SSH: true | |
GIT_USER: petyosi | |
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
sumodules: recursive | |
token: ${{ secrets.SUBMODULE_TOKEN }} | |
- name: Git config user | |
uses: snow-actions/[email protected] | |
with: | |
name: Virtuoso CI | |
email: [email protected] | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: Verify Change Logs | |
run: node common/scripts/install-run-rush.js change --verify | |
- name: Rush Install | |
run: node common/scripts/install-run-rush.js install | |
- name: Rush rebuild | |
run: node common/scripts/install-run-rush.js rebuild --verbose | |
- name: Rush publish | |
run: node common/scripts/install-run-rush.js publish --apply --target-branch v5 --publish --registry https://registry.npmjs.org/ --npm-auth-token "$NPM_TOKEN" --add-commit-details |