Skip to content

add: roll up

add: roll up #104

Workflow file for this run

name: Node.js Build CI
on:
push:
branches: ['master']
pull_request:
branches: ['master']
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Change to ts-java-structures directory
run: cd java_vs_javascript/ts-java-structures
- name: Install dependencies
run: npm install
working-directory: java_vs_javascript/ts-java-structures
- name: Build project
run: npm run build
working-directory: java_vs_javascript/ts-java-structures