Skip to content

chore(deps-dev): bump tsx from 4.19.1 to 4.19.2 #1196

chore(deps-dev): bump tsx from 4.19.1 to 4.19.2

chore(deps-dev): bump tsx from 4.19.1 to 4.19.2 #1196

Workflow file for this run

name: 'Node'
on:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [18.x, 20.x]
steps:
- name: Checkout 🛬
uses: actions/checkout@v4
- name: Setup Node ⚙️
uses: ./.github/actions/setup-node
with:
version: ${{ matrix.node-version }}
npm_token: ${{ secrets.NPM_TOKEN }}
- name: Build typescript 📦
run: npm run build && find dist/index.js
- name: Lint code 💅
run: npm run lint
- name: Run tests ✅
run: npm run test