Skip to content

Bump ts-node from 10.9.1 to 10.9.2 #180

Bump ts-node from 10.9.1 to 10.9.2

Bump ts-node from 10.9.1 to 10.9.2 #180

Workflow file for this run

name: CI Build
# Controls when the action will run. Triggers the workflow on pushed tags
on:
pull_request:
branches:
- main
push:
branches:
- "*"
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
# Set up Node
- name: Use Node 18
uses: actions/setup-node@v4
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
# Run install dependencies
- name: Install dependencies
run: npm i
# Build
- name: Build
run: npm run prepublish
- name: Test
run: npm test
- name: Test packaging
run: npm run package