24 lines
497 B
YAML
24 lines
497 B
YAML
name: Deploy
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Dashboard code
|
|
uses: actions/checkout@v3
|
|
- uses: pnpm/action-setup@v2
|
|
with:
|
|
version: latest
|
|
- name: Setup Nodejs
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '18.x'
|
|
cache: pnpm
|
|
- name: Install package and build
|
|
run: |
|
|
pnpm install --no-frozen-lockfile
|
|
pnpm build
|
|
|
|
- run: ls -la
|