Bugfix/issue 153 token revalidation #395
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:latest | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: password | |
POSTGRES_DB: mydatabase | |
ports: | |
- 5432:5432 | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Install dependencies | |
run: npm install | |
- name: ESLint check | |
run: npm run lint | |
- name: Set up environment variables | |
run: | | |
echo "DB_USER=postgres" >> .env | |
echo "DB_HOST=localhost" >> .env | |
echo "DB_NAME=mydatabase" >> .env | |
echo "DB_PASSWORD=password" >> .env | |
echo "DB_PORT=5432" >> .env | |
echo "SERVER_PORT=4000" >> .env | |
echo "JWT_SECRET=your_jwt_secret_key" >> .env | |
echo "GOOGLE_CLIENT_ID=your_google_client_id" >> .env | |
echo "GOOGLE_CLIENT_SECRET=your_google_client_secret" >> .env | |
echo "GOOGLE_REDIRECT_URL=http://localhost:${SERVER_PORT}/api/auth/google/callback" >> .env | |
echo "CLIENT_URL=http://localhost:5173" >> .env | |
echo "IMG_HOST=http://localhost:${SERVER_PORT}" >> .env | |
echo "SMTP_MAIL=your_smtp_mail" >> .env | |
echo "SMTP_PASSWORD=your_smtp_password" >> .env | |
echo "LINKEDIN_CLIENT_ID=your_linkedin_client_id" >> .env | |
echo "LINKEDIN_CLIENT_SECRET=your_linkedin_client_secret" >> .env | |
echo "LINKEDIN_REDIRECT_URL=http://localhost:${SERVER_PORT}/api/auth/linkedin/callback" >> .env | |
- name: Run tests | |
run: npm run test | |
- name: Build | |
run: npm run build |