Skip to content

JASPER-176/253: Testing Framework and Components #128

JASPER-176/253: Testing Framework and Components

JASPER-176/253: Testing Framework and Components #128

name: Build and Test Web
on:
pull_request:
branches:
- master
paths:
- "web/**"
workflow_dispatch:
env:
WORKING_DIRECTORY: ./web
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Building Web codebase
uses: ./.github/workflows/actions/build-web
with:
working_directory: ${{ env.WORKING_DIRECTORY }}
node_version: ${{ matrix.node-version }}