Skip to content

remove registry

remove registry #542

Workflow file for this run

name: zk-build
on:
push:
branches-ignore:
- '*-Stable'
pull_request:
branches-ignore:
- '*-Stable'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Java 11
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: 11
- name: Use Node.js 16 LTS
uses: actions/setup-node@v3
with:
node-version: 16
- name: Build Latest ZK
run: |
if [ -e yarn.lock ]; then
yarn install --frozen-lockfile
elif [ -e package-lock.json ]; then
npm ci
else
npm i
fi
./build clean
./build zel zcommon zweb zk zul zkbind zhtml zkplus