Skip to content

Commit

Permalink
#28: disables running tests from workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Dirk Peter committed Jun 28, 2024
1 parent 70f68f7 commit 86a1291
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,18 @@ jobs:
- run: echo "PACKAGE_JSON=$(jq -c . < package.json)" >> $GITHUB_ENV

# - run: npm lint
- run: npm test
# - run: npm test
- run: npm run build

- run: echo "ARCHIVE_NAME=${{ fromJson(env.PACKAGE_JSON).name }}_${{ fromJson(env.PACKAGE_JSON).version }}.zip" >> $GITHUB_ENV

- name: Zip Build
run: |
cd ./dist/apps/${{ fromJson(env.PACKAGE_JSON).name }}
zip -r ../../${{ env.ARCHIVE_NAME }} ./
# obsolete with moving to 1020
# - name: Zip Build
# run: |
# cd ./dist/apps/${{ fromJson(env.PACKAGE_JSON).name }}
# zip -r ../../${{ env.ARCHIVE_NAME }} ./

# enable if you want to store an artifact of the build
# - name: Archive production artifacts
# uses: actions/upload-artifact@v4
# with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ jobs:
- run: npm ci

- run: npm run build
- run: npm test
# - run: npm test
# - run: npm lint

0 comments on commit 86a1291

Please sign in to comment.