Skip to content

chore: update js impl to wrapscan | /workflows/cd #23

chore: update js impl to wrapscan | /workflows/cd

chore: update js impl to wrapscan | /workflows/cd #23

Workflow file for this run

name: ethereum-wallet-js-ci
on:
push:
branches:
- main
pull_request:
paths:
- "implementations/js/**"
jobs:
ci:
name: ethereum-wallet-js-ci
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Read .nvmrc
run: echo ::set-output name=NVMRC::$(cat .nvmrc)
id: nvm
- name: Setup Node.js
uses: actions/setup-node@master
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
- name: Install dependencies
run: yarn install --nonInteractive --frozen-lockfile --prefer-offline
working-directory: ./implementations/js
- name: Build
run: yarn build
working-directory: ./implementations/js
- name: Test
run: yarn test
working-directory: ./implementations/js