chore: specify packageManager (#371) #981
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: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛬 | |
uses: actions/checkout@v4 | |
- name: Setup Node ⚙️ | |
uses: ./.github/actions/setup-node | |
- name: Build typescript 📦 | |
run: node --run build && find dist/main.js | |
- name: Lint code 💅 | |
run: node --run lint | |
- name: Run tests ✅ | |
run: node --run test |