Skip to content

ops: promote 11 26 #333

ops: promote 11 26

ops: promote 11 26 #333

Workflow file for this run

name: CI (Test and Build)
on: pull_request
jobs:
test-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version-file: ./ui/.nvmrc
- name: Install Dependencies
run: npm ci
working-directory: ./ui
- name: Run Tests
run: npm run test
working-directory: ./ui
- name: Build
run: npm run build
working-directory: ./ui