Skip to content

Update version

Update version #1052

Workflow file for this run

name: "CI workflow for UI Packages"
on:
pull_request:
branches:
- "v2"
- "main"
paths:
- "deepfence_frontend/**"
jobs:
build:
runs-on: ['self-hosted']
defaults:
run:
working-directory: ./deepfence_frontend
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 7
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install --frozen-lockfile --prefer-offline
- name: Build
run: pnpm build
- name: Check formatting
run: pnpm format
- name: Check lint errors
run: pnpm lint
- name: Run the tests
run: pnpm test