Skip to content

feat: init @ledgerhq/crypto-icons library (provider version) #1

feat: init @ledgerhq/crypto-icons library (provider version)

feat: init @ledgerhq/crypto-icons library (provider version) #1

Workflow file for this run

name: Run Tests
on:
pull_request:
branches: ["main"]
# paths: ["./lib"]
workflow_dispatch:
jobs:
lint-and-test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./lib
strategy:
matrix:
node-version: [20]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 8.15.7
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint
- name: Run Jest tests
run: pnpm test