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

build(deps-dev): bump @babel/traverse from 7.23.0 to 7.23.2 in /javascript #11

build(deps-dev): bump @babel/traverse from 7.23.0 to 7.23.2 in /javascript

build(deps-dev): bump @babel/traverse from 7.23.0 to 7.23.2 in /javascript #11

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@v3
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