diff --git a/.github/build_action/action.yml b/.github/build_action/action.yml index 6eb3651c5..780202921 100644 --- a/.github/build_action/action.yml +++ b/.github/build_action/action.yml @@ -3,12 +3,15 @@ name: Run test and build runs: using: "composite" steps: - - name: Install Dependencies + shell: bash run: npm ci - name: Run all checks + shell: bash run: npm run check - name: Run Tests + shell: bash run: npm test - name: Build for Production + shell: bash run: npm run build:prod