Skip to content

feat: Add some basic documentation to the README. (#23) #121

feat: Add some basic documentation to the README. (#23)

feat: Add some basic documentation to the README. (#23) #121

Workflow file for this run

name: "🐢 Node"
on:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [22.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: pnpm build && find dist/index.js
- name: Lint code 💅
run: pnpm lint
- name: Run tests ✅
run: pnpm test