Skip to content
Closed
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
8 changes: 4 additions & 4 deletions .github/workflows/lint_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,19 @@ jobs:
]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 0

- uses: actions/setup-node@v3
- uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3
with:
node-version: 20.12.2

- uses: pnpm/action-setup@v2
with:
version: 9.0.6

- uses: actions/cache@v3
- uses: actions/cache@2f8e54208210a422b2efd51efaa6bd6d7ca8920f # v3
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:

- name: Deploy prod
if: github.ref == 'refs/heads/main'
uses: jakejarvis/s3-sync-action@v0.5.0
uses: jakejarvis/s3-sync-action@0facb2201e4ea106a491c765ff0141dee4f9660b # v0.5.0
with:
args: --acl public-read --follow-symlinks --delete
env:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use an official Node.js runtime as a base image
FROM node:20.10-alpine
FROM node:20.10-alpine@sha256:9e38d3d4117da74a643f67041c83914480b335c3bd44d37ccf5b5ad86cd715d1

# Set working directory
WORKDIR /usr/app
Expand Down
50 changes: 25 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,33 +85,33 @@
"zod": "^3.23.8"
},
"devDependencies": {
"@faker-js/faker": "^9.2.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@svgr/webpack": "^8.1.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/eslint": "^8.56.12",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.9.3",
"@faker-js/faker": "9.2.0",
"@ianvs/prettier-plugin-sort-imports": "4.4.0",
"@svgr/webpack": "8.1.0",
"@total-typescript/ts-reset": "0.6.1",
"@types/eslint": "8.56.12",
"@types/lodash-es": "4.17.12",
"@types/node": "22.9.3",
"@types/react": "^18.3.12",
"@types/react-collapse": "^5.0.4",
"@types/react-collapse": "5.0.4",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"autoprefixer": "^10.4.20",
"dotenv-cli": "^7.4.4",
"drizzle-kit": "^0.28.1",
"eslint": "^8.57.1",
"eslint-config-next": "^15.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"pg": "^8.13.1",
"postcss": "^8.4.49",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.9",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.15",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"autoprefixer": "10.4.20",
"dotenv-cli": "7.4.4",
"drizzle-kit": "0.28.1",
"eslint": "8.57.1",
"eslint-config-next": "15.0.3",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-tailwindcss": "3.17.5",
"pg": "8.13.1",
"postcss": "8.4.49",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.9",
"rimraf": "6.0.1",
"tailwindcss": "3.4.15",
"tsx": "4.19.2",
"typescript": "5.7.2"
},
"ct3aMetadata": {
"initVersion": "7.23.1"
Expand Down
Loading