JASPER 178: Court file search result #142
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |