Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
scope: '@workfront'
- run: npm ci
- run: npm ci --no-fund --no-audit
- name: Bump package version
run: |
git config --global user.name 'github-actions[bot]'
Expand All @@ -52,7 +52,7 @@ jobs:
- name: Draft release
run: |
VERSION=$(node -p "require('./package.json').version")
gh release create $VERSION --generate-notes --draft
gh release create v$VERSION --generate-notes --draft --verify-tag --fail-on-no-commits
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ inputs.next_version }}
6 changes: 3 additions & 3 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
scope: '@workfront'
- run: npm ci
- run: npm ci --no-fund --no-audit
- run: npm run build
test:
runs-on: ubuntu-latest
Expand All @@ -32,7 +32,7 @@ jobs:
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
scope: '@workfront'
- run: npm ci
- run: npm ci --no-fund --no-audit
- run: npm run test:sources -- --ci
- uses: codecov/codecov-action@v4
with:
Expand All @@ -49,5 +49,5 @@ jobs:
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
scope: '@workfront'
- run: npm ci
- run: npm ci --no-fund --no-audit
- run: npm run test:typecheck