Skip to content

Bump tsx from 4.7.2 to 4.12.0 #356

Bump tsx from 4.7.2 to 4.12.0

Bump tsx from 4.7.2 to 4.12.0 #356

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- master
- develop
- rc
jobs:
units:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.x, 20.x, 21.x ]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm run test
linting:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20.x ]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run lint