Skip to content

use config err bug vitest local not run test browser v.1.6.0 back to v.1.5.0 config befor update to ver 1.6.0 #9

use config err bug vitest local not run test browser v.1.6.0 back to v.1.5.0 config befor update to ver 1.6.0

use config err bug vitest local not run test browser v.1.6.0 back to v.1.5.0 config befor update to ver 1.6.0 #9

Workflow file for this run

name: Wallet
on:
push:
branches: [master, develop]
tags: ['*']
pull_request:
types: [opened, reopened, synchronize]
workflow_dispatch:
env:
cwd: ${{github.workspace}}/packages/wallet
defaults:
run:
working-directory: packages/wallet
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test-wallet:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci --omit=peer
working-directory: ${{github.workspace}}
- run: npm run lint
- run: npm run coverage
- uses: codecov/codecov-action@v3
with:
files: ${{ env.cwd }}/coverage/lcov.info
flags: wallet
- run: npm run test:node # Only run node tests for now until vitest browser test issues are sorted out