diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3fa3c63..7d30f6e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,12 +28,12 @@ jobs: # Install Node Modules - name: Install Node Modules - run: yarn install --frozen-lockfile + run: npm install # Runs a set of commands using the runners shell - - name: Runs Unit Tests - run: yarn test + - name: Build typescript code + run: npm run build # Runs a set of commands using the runners shell - - name: Build typescript code - run: yarn build + - name: Runs Unit Tests + run: npm run test