chore(main): release 2.0.1 (#424) #1301
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |