Skip to content

Updated repo to match latest frontend tech #1

Updated repo to match latest frontend tech

Updated repo to match latest frontend tech #1

Workflow file for this run

name: Component Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Test UI Components
strategy:
matrix:
node-version: [18.16.1, 20.4.0]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run Component Tests
run: npm run test:component