Skip to content

refactor : change font in blog website #747

refactor : change font in blog website

refactor : change font in blog website #747

Workflow file for this run

name: Build
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node for admin
uses: actions/setup-node@v1
with:
node-version: "18.x"
- name: Build admin panel
run: |
cd admin
yarn install
yarn build
- name: Set up Node for website
uses: actions/setup-node@v1
with:
node-version: "20.x"
- name: Build frontend
env:
NEXT_PUBLIC_WEBSITE_URL: https://dev-stack.canopas.com
NEXT_PUBLIC_STRAPI_DOMAIN: ${{secrets.ADMIN_PANEL_URL}}
run: |
yarn add prettier
yarn lint
yarn build