Skip to content

Test Github workflow CI speed #16

Test Github workflow CI speed

Test Github workflow CI speed #16

Workflow file for this run

name: CI
on:
push:
branches:
- main
- next
pull_request:
workflow_call:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
prepare-cache:
name: Prepare Cache
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/prepare-workspace
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