Skip to content

Bump the dependencies group with 24 updates #20

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
sed -i "s#AUTH_SECRET=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx#AUTH_SECRET=$(openssl rand -base64 32)#g" .env
npx dotenv -e .env prisma migrate deploy # https://github.com/prisma/prisma/issues/10403#issuecomment-1500770484
npm run migrate
npx tsc scripts/create-fake-accounts.ts
npx tsc --skipLibCheck scripts/create-fake-accounts.ts
node scripts/create-fake-accounts.js
- name: Build website
run: npm run build
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.development
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ RUN --mount=type=cache,target=.npm \
npm install && chown -R node:node ./node_modules

# Add some cronjobs for automated tasks
RUN npx tsc scripts/create-fake-accounts.ts scripts/expired-files.ts scripts/outdated-notifications.ts
RUN npx tsc --skipLibCheck scripts/create-fake-accounts.ts scripts/expired-files.ts scripts/outdated-notifications.ts
RUN echo "*/5 * * * * node /usr/src/app/scripts/expired-files.js > /dev/null 2>&1" >> /var/spool/cron/crontabs/node
RUN echo "*/5 * * * * node /usr/src/app/scripts/outdated-notifications > /dev/null 2>&1" >> /var/spool/cron/crontabs/node

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.production
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ RUN --mount=type=cache,target=.npm \
npm install && chown -R node:node ./node_modules

# Add some cronjobs for automated tasks
RUN npx tsc scripts/create-fake-accounts.ts scripts/expired-files.ts scripts/outdated-notifications.ts
RUN npx tsc --skipLibCheck scripts/create-fake-accounts.ts scripts/expired-files.ts scripts/outdated-notifications.ts
RUN echo "*/5 * * * * node /usr/src/app/scripts/expired-files.js > /dev/null 2>&1" >> /var/spool/cron/crontabs/node
RUN echo "*/5 * * * * node /usr/src/app/scripts/outdated-notifications > /dev/null 2>&1" >> /var/spool/cron/crontabs/node

Expand Down
Loading
Loading