Skip to content

chore(deps): bump ink from 4.4.1 to 7.0.4 #163

chore(deps): bump ink from 4.4.1 to 7.0.4

chore(deps): bump ink from 4.4.1 to 7.0.4 #163

Workflow file for this run

name: Run Tests
on:
pull_request:
branches:
- main
- master
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests with coverage
run: npm test -- --coverage.enabled --coverage.provider=v8 --coverage.reporter=json-summary --coverage.reporter=text --coverage.reporter=lcov
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/lcov.info
fail_ci_if_error: false