Skip to content

feat: Your testkube instalation block #2069

feat: Your testkube instalation block

feat: Your testkube instalation block #2069

Workflow file for this run

name: Build
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
Build-dashboard:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache node modules
id: cache-nodemodules
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
# caching node_modules
path: '**/node_modules'
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install dependencies packages
if: steps.cache-nodemodules.outputs.cache-hit != 'true'
run: npm install --legacy-peer-deps
- name: Building
if: always()
run: npm run build