Skip to content

Commit

Permalink
Merge pull request #20 from FlorianLeChat/dependabot/npm_and_yarn/dep…
Browse files Browse the repository at this point in the history
…endencies-840386b1ab

Bump the dependencies group with 24 updates
  • Loading branch information
github-actions[bot] authored Jun 1, 2024
2 parents 8468774 + 872e1c7 commit 39863db
Show file tree
Hide file tree
Showing 5 changed files with 2,741 additions and 909 deletions.
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

0 comments on commit 39863db

Please sign in to comment.