Skip to content

Commit

Permalink
test planning extension build on github actions (#2130)
Browse files Browse the repository at this point in the history
  • Loading branch information
petrjasek authored Nov 20, 2024
1 parent c67a08d commit b6e2d27
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions .github/workflows/ci-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,22 @@ jobs:
- run: npm ci
- run: npm run test
- run: npm run lint

extension:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- name: install
working-directory: client/planning-extension
run: npm ci
- name: compile
working-directory: client/planning-extension
run: npm run compile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export class AssignmentsCountTracker extends React.PureComponent<{}, {loading: t
{menuId: 'MENU_ITEM_PLANNING_ASSIGNMENTS', badgeValue: itemsCount.toString()},
);

return null;
return <></>;
}
}
</LiveAssignmentsHOC>
Expand Down

0 comments on commit b6e2d27

Please sign in to comment.