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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |