Skip to content
This repository has been archived by the owner on Dec 4, 2023. It is now read-only.

Bump typescript from 4.9.5 to 5.2.2 #138

Bump typescript from 4.9.5 to 5.2.2

Bump typescript from 4.9.5 to 5.2.2 #138

Workflow file for this run

name: Test
on:
push:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
package:
- "@the-bds-maneger/core"
- "bds-maneger"
- "@the-bds-maneger/verapi"
name: "Testing \"${{ matrix.package }}\""
env:
bdscoreroot: "~/.bdsCore"
steps:
- uses: actions/checkout@v3
name: Code checkout
# Install basic tools
- uses: actions/[email protected]
name: Setup node.js
with:
node-version: latest
- name: Install latest java
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: "17"
# Install dependecies
- name: Install nodejs dependencies
run: npm install --no-save
# Build Core
- name: Core Build
if: matrix.package != '@the-bds-maneger/core'
run: npm run -w "@the-bds-maneger/core" prepack
- name: Build "${{ matrix.package }}"
run: npm run --if-present -w "${{ matrix.package }}" prepack