Skip to content

Pulling feat/e2e-istanbul into develop #1532

Pulling feat/e2e-istanbul into develop

Pulling feat/e2e-istanbul into develop #1532

Workflow file for this run

name: Testing (Pull Request)
on: [pull_request, workflow_dispatch]
jobs:
test:
name: Unit tests
runs-on: ubuntu-latest
steps:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Check out Code
uses: actions/checkout@v4
- name: install
run: yarn install --ignore-engines
- name: unit tests
run: yarn coverage
- name: upload test coverage to codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV }}