Skip to content

Merge pull request #43 from rajadilipkolli/main #1

Merge pull request #43 from rajadilipkolli/main

Merge pull request #43 from rajadilipkolli/main #1

Workflow file for this run

name: Nuxt Build CI
on:
push:
paths:
- "ui/**"
branches: [ main ]
pull_request:
paths:
- "ui/**"
types:
- opened
- synchronize
- reopened
jobs:
build:
name: Run Unit & Integration Tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: "./ui"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Install dependencies
run: yarn
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "16"
- name: RUN build
run: |
yarn install
yarn run build