Skip to content

Commit

Permalink
random env values for ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nicitaacom committed Jul 30, 2023
1 parent 26e4eed commit 706eb09
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,27 @@ jobs:

- name: Building
run: pnpm build
env:
NEXTAUTH_SECRET: 'FRqfW3Puy5CM0gaFu8joMw2zFNwbIBgRqHX2WW3HcVu7U5gwXQDBbGRbp2eg'
NEXTAUTH_URL: 'http://localhost:3000'
GITHUB_CLIENT_ID: '123'
GITHUB_CLIENT_SECRET: '1234'
GOOGLE_CLIENT_ID: '12345'
GOOGLE_CLIENT_SECRET: '123456'
FACEBOOK_CLIENT_ID: '1234567'
FACEBOOK_CLIENT_SECRET: '12345678'

- name: lintrc
run: pnpm lint
env:
NEXTAUTH_SECRET: 'FRqfW3Puy5CM0gaFu8joMw2zFNwbIBgRqHX2WW3HcVu7U5gwXQDBbGRbp2eg'
NEXTAUTH_URL: 'http://localhost:3000'
GITHUB_CLIENT_ID: '123'
GITHUB_CLIENT_SECRET: '1234'
GOOGLE_CLIENT_ID: '12345'
GOOGLE_CLIENT_SECRET: '123456'
FACEBOOK_CLIENT_ID: '1234567'
FACEBOOK_CLIENT_SECRET: '12345678'

- name: Type-checking
run: pnpm type-check
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"dev": "next dev",
"postinstall": "prisma generate",
"lint": "next lint",
"start": "next start"
"start": "next start",
"type-check": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
Expand Down

0 comments on commit 706eb09

Please sign in to comment.