Skip to content

feat: allow adding chart revisions over the helmarchitect store #23

feat: allow adding chart revisions over the helmarchitect store

feat: allow adding chart revisions over the helmarchitect store #23

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
paths:
- 'ui/**'
pull_request:
# The branches below must be a subset of the branches above
branches: [ '*' ]
paths:
- 'ui/**'
jobs:
go-build:
name: Pocketbase Build
runs-on: ubuntu-latest
defaults:
run:
working-directory: ui/pocketbase
strategy:
matrix:
goVer: [1.20]
steps:
- name: Set up Go ${{ matrix.goVer }}
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.goVer }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
go mod vendor
- name: Test
run: |
go test -v ./...
- name: Build
run: |
go build -v ./...
ui-build:
name: Frontend Build
runs-on: ubuntu-latest
defaults:
run:
working-directory: ui/frontend
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: Install dependencies
run: npm install --legacy-peer-deps
- name: Build
run: npm run build
env:
PUBLIC_LOGIN_CALLBACK: "https://dummy.xyz/"
OAUTH2_WELLKNOWN_CONFIGURATION_URL: "https://dummy.xyz/"
OAUTH2_ISSUER_URL: "https://dummy.xyz/"
OAUTH2_AUTHORIZATION_URL: "https://dummy.xyz/"
OAUTH2_CLIENT_ID: "dummy"
OAUTH2_CLIENT_SECRET: "dummy"
AUTH_SECRET=: "dummy"
HELM_ARCHITECT_BACKEND: "https://dummy.xyz/"