feat: ✨ Cardano base provider #6
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: Test Flow | |
on: | |
pull_request: | |
branches: | |
- main | |
- develop | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📲 Check out repository code | |
uses: actions/checkout@v4 | |
- name: 📦 Setup Node.js 20.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20.x' | |
- name: 🛠️ Install PNPM | |
run: npm install -g pnpm | |
- name: 🛠️ Install dependencies | |
run: pnpm install | |
- name: 🪜 Run tests | |
run: pnpm test | |