Skip to content
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.

πŸ—„οΈ archive #69

πŸ—„οΈ archive

πŸ—„οΈ archive #69

Workflow file for this run

name: deploy
on:
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 16
- name: Install and Build πŸ”§
run: |
npm ci --ignore-scripts --no-audit --no-fund --no-progress --prefer-offline
npm install esbuild # temp fix (https://github.com/evanw/esbuild/issues/1819#issuecomment-1680244804)
cd modules
cd generator
npm run build
cd ..
cd app
npm ci --ignore-scripts --no-audit --no-fund --no-progress --prefer-offline
npm link ../generator
npm run build
- name: Deploy πŸš€
uses: JamesIves/github-pages-deploy-action@4.1.5
with:
branch: gh-pages
folder: modules/app/build