#cnsqa-1683 dependencies update #150
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: | |
- master | |
- next | |
pull_request: | |
workflow_call: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
ci: | |
name: CI | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/prepare-workspace | |
- name: Run Lint | |
run: npm run lint | |
- name: Run Stylelint | |
run: npm run stylelint | |
- name: Run Tests | |
run: npm run test:all | |
- name: Run Bundle Size Test | |
run: npm run test:size | |
- name: Run Create IMA App Test | |
run: npm run test:create-ima-app | |
release: | |
if: github.ref_name == 'master' || github.ref_name == 'next' | |
needs: [ci] | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/prepare-workspace | |
- name: Release new versions | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: npm run release:publish |