Skip to content

Centralized community providers; And updated new community wizard to … #991

Centralized community providers; And updated new community wizard to …

Centralized community providers; And updated new community wizard to … #991

Workflow file for this run

name: CI Build
on:
workflow_dispatch:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://npm.pkg.github.com'
# Defaults to the user or organization that owns the workflow file
scope: '@octocat'
- name: Authenticate to Github packages
run: |
echo "@homebase-id:registry=https://npm.pkg.github.com" > .npmrc
echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> .npmrc
- run: npm ci
- run: npm run build:libs
- run: npm run build
- run: npm run test
- run: npm run lint