Skip to content

Fix ledger init issue on Next.js #4

Fix ledger init issue on Next.js

Fix ledger init issue on Next.js #4

Workflow file for this run

name: Run tests
on:
pull_request:
branches:
- development
types:
- closed
jobs:
test:
name: Run tests
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v1
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- name: Setup yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn test