Skip to content

Bump typescript from 5.4.2 to 5.4.3 #235

Bump typescript from 5.4.2 to 5.4.3

Bump typescript from 5.4.2 to 5.4.3 #235

Workflow file for this run

# Workflow for CI debug build
name: CI
on:
push:
paths-ignore:
- README.md
- SECURITY.md
- .git**
pull_request:
branches:
- main
- feature/**
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [17.x, 18.x]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v4
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}
- name: Install & Build
run: |
npm i -g esbuild
npm i
npm run compile