Skip to content
Open
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/pr-backstage-plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ on:
- "backstage-plugin/**"
- ".github/workflows/pr-backstage-plugin.yaml"
- "./.github/workflows/test/test-backstage-plugin.yaml"
- "./.github/workflows/publish/publish-backstage-plugin-npm.yaml"
- "./.github/workflows/publish/publish-backstage-plugin-package.yaml"
pull_request:
branches:
- main
paths:
- "backstage-plugin/**"
- ".github/workflows/pr-backstage-plugin.yaml"
- "./.github/workflows/test/test-backstage-plugin.yaml"
- "./.github/workflows/publish/publish-backstage-plugin-npm.yaml"
- "./.github/workflows/publish/publish-backstage-plugin-package.yaml"

jobs:
test:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-backstage-plugin-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
yarn version --new-version ${{ steps.gitversion.outputs.fullSemVer }} --no-git-tag-version
yarn publish --non-interactive --tag pr
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Publish to GHCR
if: github.event_name == 'release'
Expand All @@ -67,4 +67,4 @@ jobs:
sed -i 's/"@devoteam-nl\//"@devoteamnl\//g' package.json
yarn publish --non-interactive
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ describe('BenchmarkGridItem', () => {
expect(queryByText('3 deployment days per week(elite)')).not.toBeNull();
});

it('should show the error returned from the service', async () => {
it('should show the error returned from the services', async () => {
server.use(
rest.get(benchmarkUrl, (_, res, ctx) => {
return res(ctx.status(401));
Expand Down