@@ -0,0 +1,20 @@
|
||||
name: Plenti Build
|
||||
run-name: ${{ github.actor }} deployed to build branch
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '22'
|
||||
- name: Clean install dependencies and build
|
||||
run: |
|
||||
npm ci
|
||||
npm run build
|
||||
Reference in New Issue
Block a user