Skip to content

wip: content area as popup window #160

wip: content area as popup window

wip: content area as popup window #160

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Build
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
with:
fetch-depth: '20'
- name: Use Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: 16.x
- name: Install pnpm@latest
run: npm i -g pnpm
- name: Install dependencies
if: steps.cache_node_modules.outputs.cache-hit != 'true'
run: |
pnpm install --frozen-lockfile
- name: Build
run: pnpm run build
- name: Archive production artifacts
uses: actions/upload-artifact@v2
with:
name: dist
path: |
dist/*