Skip to content

(feat) add auto refresh token to hejto provider #34

(feat) add auto refresh token to hejto provider

(feat) add auto refresh token to hejto provider #34

Workflow file for this run

name: BuildAHC
on: [push]
jobs:
CI-backend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16
uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install packages
run: npm ci
- name: Run linter
run: npm run lint
- name: Build backend
run: npm run build
CI-frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16
uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install frontend packages
run: npm ci
working-directory: ./frontend
- name: Build frontend
run: npm run build
working-directory: ./frontend