Skip to content

feat(core): converts app to standalone #25

feat(core): converts app to standalone

feat(core): converts app to standalone #25

Workflow file for this run

name: CICD
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: Build the app
run: pnpm build