Skip to content

update repository rename on package.json and README. #42

update repository rename on package.json and README.

update repository rename on package.json and README. #42

Workflow file for this run

name: End to end Tests
on:
pull_request:
branches: '**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [24]
steps:
- uses: actions/checkout@v4
- name: Setup Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm run test:e2e