Skip to content

Commit

Permalink
fix(ref: no-ref): fix issues
Browse files Browse the repository at this point in the history
  • Loading branch information
andriikamaldinov1 committed Nov 4, 2024
1 parent 6c40d6c commit f371fdb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 20 deletions.
19 changes: 1 addition & 18 deletions .github/workflows/quality-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ on: [push]
jobs:
quality-check:
runs-on: ubuntu-latest
outputs:
version: ${{ steps.get_version.outputs.version }}
permissions:
contents: write
steps:
Expand All @@ -23,19 +21,4 @@ jobs:
- name: Check quality
run: |
bun i
bash .github/workflows/scripts/quality.sh
- name: Extract version
id: get_version
run: |
VERSION=$(node -p "require('./dist/ngx-mask-lib/package.json').version")
echo "version=$VERSION" >> $GITHUB_OUTPUT
version_check:
needs:
- quality-check
runs-on: ubuntu-latest
steps:
- name: Display version
run:
echo "${{ needs.quality-check.outputs.version || 'TBA' }}"
bash .github/workflows/scripts/quality.sh
4 changes: 2 additions & 2 deletions .github/workflows/scripts/quality.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ else
echo "Type coverage is good! 🎉"
fi

#bun run test
#bun run cypress:bash
bun run test
bun run cypress:bash

bun run build

Expand Down

0 comments on commit f371fdb

Please sign in to comment.