Skip to content

PI-1551 Enable setting a custom URL for the back-end API #204

PI-1551 Enable setting a custom URL for the back-end API

PI-1551 Enable setting a custom URL for the back-end API #204

Workflow file for this run

name: Build component
on:
push:
branches-ignore:
- main
paths:
- 'packages/probation-search-frontend/**'
- '.github/workflows/build.yml'
jobs:
build:
name: Build
strategy:
matrix:
node-version: [16.x, 18.x, 20.x, lts/*]
runs-on: ubuntu-latest
permissions:
contents: read
defaults:
run:
working-directory: packages/probation-search-frontend
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
cache: npm
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm clean-install
- name: Build
run: npm run build
- name: Test
run: npm test