Skip to content

Merging with onflow latest development branch #2

Merging with onflow latest development branch

Merging with onflow latest development branch #2

Workflow file for this run

name: Javascript tests
on:
workflow_dispatch:
push:
branches:
- master
- main
- develop
pull_request:
jobs:
job_unit_test:
name: Javascript tests
runs-on: ubuntu-latest
container:
image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder-lite:latest
steps:
- name: Clone
uses: actions/checkout@v3
- name: Set Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Build JS and run tests
run: |
cd js/ && yarn install && yarn build && yarn test