Skip to content
This repository has been archived by the owner on Oct 20, 2024. It is now read-only.

build(deps-dev): bump junit.jupiter.version from 5.10.2 to 5.10.3 in /java #59

build(deps-dev): bump junit.jupiter.version from 5.10.2 to 5.10.3 in /java

build(deps-dev): bump junit.jupiter.version from 5.10.2 to 5.10.3 in /java #59

Workflow file for this run

name: JavaScript
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 14.x, 16.x, 18.x ]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install --prefix javascript
- name: Compile TypeScript to JavaScript
run: npm run compile --prefix javascript
- name: Unit Tests
run: npm run test --prefix javascript