Skip to content

Commit

Permalink
Split install and build step
Browse files Browse the repository at this point in the history
  • Loading branch information
nazarhussain committed Sep 25, 2024
1 parent a29c405 commit 83179a8
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,12 @@ jobs:
- name: Initialize git submodules
shell: bash
run: git submodule init && git submodule update
- name: Install & build
- name: Install npm
shell: bash
run: npm install && npm run build
run: npm install
- name: Build
shell: bash
run: npm run build
- name: Check Build
shell: bash
run: npm run check:build
Expand All @@ -55,8 +58,11 @@ jobs:
- name: Initialize git submodules
shell: bash
run: git submodule init && git submodule update
- name: Install & build
- name: Install npm
shell: bash
run: npm install
- name: Build
shell: bash
run: npm install && npm run build
run: npm run build
- name: Unit tests
run: npm run test:unit

0 comments on commit 83179a8

Please sign in to comment.