Skip to content

Commit

Permalink
chore: minor adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
shreddedbacon committed Jul 8, 2024
1 parent a7daecf commit fe747b2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@ development-api-down:
.PHONY: down
down:
$(MAKE) development-api-down
docker-compose -p $(CI_BUILD_TAG) --compatibility down -v --remove-orphans
docker-compose -p $(CI_BUILD_TAG) --compatibility down -v --remove-orphans
5 changes: 3 additions & 2 deletions cypress/run.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
#!/bin/bash

# create cache for repeat runs
mkdir -p /workdir/cypress_cache
ln -s /workdir/cypress_cache /root/.cache
# mkdir -p /workdir/cypress_cache
# ln -s /workdir/cypress_cache /root/.cache
export CYPRESS_CACHE_FOLDER=/workdir/node_modules/cypress/cache/Cypress

yarn --frozen-lockfile
# run the tests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ const PaginatedTable: FC<Props> = ({
if (list && listKey) {
const roleToIdx = {};
list.forEach((role, idx) => {
// @ts-ignore
//@ts-ignore
roleToIdx[role] = idx;
});
//@ts-ignore
Expand Down

0 comments on commit fe747b2

Please sign in to comment.