Skip to content

Bump @testing-library/jest-dom from 6.1.2 to 6.1.3 in /html #371

Bump @testing-library/jest-dom from 6.1.2 to 6.1.3 in /html

Bump @testing-library/jest-dom from 6.1.2 to 6.1.3 in /html #371

Workflow file for this run

# This workflow will install node dependencies, build, and run tests
name: html-build
on:
push:
paths:
- 'html/**'
- '.github/**'
pull_request:
paths:
- 'html/**'
- '.github/**'
jobs:
html-build:
runs-on: ubuntu-latest
if: >
github.event_name != 'pull_request' ||
github.event.pull_request.head.repo.full_name !=
github.event.pull_request.base.repo.full_name
steps:
- uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install Node dependencies
run: |
cd html
npm ci
cd ..
- name: Build Javascript
run: |
cd html
npm run build
cd ..
- name: Test JavaScript
run: |
cd html
npm test
cd ..