Skip to content

chore: fixing tag typo #91

chore: fixing tag typo

chore: fixing tag typo #91

Workflow file for this run

name: Node.js CI - Forum
on:
push:
branches: ["**"]
paths:
- "apps/forum/**"
pull_request:
branches: ["master", "develop"]
paths:
- "apps/forum/**"
jobs:
build:
runs-on: ubuntu-latest
env:
REACT_APP_API_BASE_URL: ${{ secrets.REACT_APP_API_BASE_URL_M }}
BIT_TOKEN: ${{ secrets.BIT_TOKEN }}
VITE_MF_FORUM_BASE_PATH: http://localhost:8084
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.x
uses: actions/setup-node@v3.0.0
with:
node-version: 16.x
- name: Cache .pnpm-store
uses: actions/cache@v2
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-node16-${{ hashFiles('**/pnpm-lock.yaml') }}
- uses: ./.github/actions/microapp
with:
path: "apps/forum"