Skip to content

chore(main): release 2.0.1 (#424) #1301

chore(main): release 2.0.1 (#424)

chore(main): release 2.0.1 (#424) #1301

Workflow file for this run

name: '🐢 Node'
on:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [20.x, 22.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